البطاقة الذكية وتوحيد البيانات

البطاقة الذكية هي البطاقة التي تحوي على شريحة إلكترونية يتم فيها حفظ للبيانات، ومن أمثلتها بطاقة الهواتف النقالة SIM وبعض البطاقات البنكية، هذا بالإضافة إلى بطاقة الأحوال المدنية عندنا في سلطنة عٌمان.

لقد سمعت من فترة ليست بالبعيدة من أحد أصدقائي عن أن بنك مسقط قد طرح خدمة جديدة وهي إمكانية إيداع مبالغ نقدية بالبطاقة الشخصية (الأحوال المدنية) وبذلك لا تلزم بحمل بطاقة الحساب البنكي لدفع مبالغ ورسوم في الجهات الحكومية والخاصة، وسميت هذه الخدمة بـ e-Purse . وليس بالجديد على العٌمانين أن هذه البطاقة أيضاً منذ أن أتت قد ألغت رخصة القيادة، أي أنها هي بحد ذاتها تحوي على رخصة القيادة.

وبالإستمرار على هذا النهج ونحو حكومة إلكترونية، فأتوقع أيضاً أن توحد هذه البطاقة كافة السجلات الخاصة بالفرد (البطاقة الشخصية، ورخصة القيادة، والحساب البنكي، والبطاقة الصحية في المستشفيات، وبطاقة القوى العاملة، و… إلخ)

أرى أن هذا شيء جيد لكن ماذا عن الآمان إذا أن بإستطاعة الشخص الذي يأخذ بطاقتك أن يولج إلى العديد من حساباتك في البنوك والمستشفيات وغيرها (center-point of failure) أي أن إخترق شيء واحد يؤدي إلى ضياع الكثير.

على العموم هذا هو مصير التقنية، دائماً التقدم فها (الإعتماد عليها) يؤدي إلى زيادة مخطارها في حالة الفشل.

Read More

find your car هل تبحث عن سيارة أحلامك

هل تبحث عن سيارة أحلامك السيارة التي ستناسبك تماما !!

هل بدأت تبحث عنها كالعادة في معارض السيارات في بلدك ! طبعا هذا هو التصرف الطبيعي ولكن لدينا حل أفضل و اسرع بقليل

و انا ابحر في الانترنت وجدت موقع يسألك اسئلة عن احتياجاتك و مبتغياتك بالسيارة و من ثم يعرض لك افضل سيارة

و بكل اندهاش وجدت أن النتائج متماثلة تماما لما أحتاجه لأنني بحثت قبل سنة في المعارض و عن طريق الاصحاب عن افضل سيارة تناسبني و هالموضوع اخذ مني شهر او اكثر إلى ان اقرر السيارة إلي رايح اشتريها

بس هالموقع خلال دقائق أعطاني نفس النتائج !!!

الموقع هو بالإنجليزي و لكنه ممتاز و هو :
http://www.carzen.com/

بعد دخولك للموقع كل ما عليك هو الضغط على explore carConsult
و من ثم الإجابة على الإسئلة و بعد الإنتهاء عليك الضغط على
review matches
لترى النتائج

جربها و أخبرنا ما رأيك

لكن الموضوع الأهم و هو ما يهم موقع مطوروا عمان لماذا لا يكون هنالك موقع عربي مثل هذا (خصوصا بسبب اهتمام و حب العرب للسيارات )

لا تنقصنا المعرفة التقنية أو البرمجة لعمل مثل هذا الموقع

أتمنى أن يكون موقع شبيه لهذا هو الموقع الكبير التالي في الانترنت العربية

Read More

How to create a Search tool in a few steps (MS Access)

Create A custom search form in MS Access in a few steps

This blog shows how to create a custom form which can search for the given fields and produce a report according to the search criteria in MS Access.

In Microsoft Access, It mostly up to the wizard to choose what it actually can do for you, but that’s not always what we really want. Custom modification is perfection considering the requirements. Well, in this blog, I’ll show you how to create a custom search engine and generate a report based on the search.

Hope you have at least the basics in MS Access. First you need to create a table, name it “student information”. We will use the following attributes,

Student ID I First Name I Middle Name I Last Name I Phone Grade

Follow the next steps to create a query and generate a search engine based on the table you just created.

Creating a query

Open the query section and create a query by using wizard including whichever columns you prefer. In this example, we will choose the entire table in the query

After choosing the entire required field as in this case, all, click next until you finish creating the query by the wizard.

After finishing creating the query, run the query in order to be able to insert some information so as to know he search really works.

Below are a few information about students.

After inserting the Information, close the window.

Creating a Form

Since the Query already exists, now we need to create a form. Using the Wizard, we can do this easily. One can create a form manually but using a wizard would be easier since we will be able to know the textbox easily. While creating the form, choose to create from a query instead of a table. Select all fields and click next. After the form is created, run the form in design view. Delete all the Information in the Text to create unbound entries.

Close the form, rename it to Search.

Now what we need is to set criteria on how to search. Open the query created earlier in design view. Right click a column and click totals.

On the criteria, write the following expression

Like [forms]![“Name of the Form”]![“Textbox Name”] & “”Criteria” As in our case, Form name is “Search” and the Textbox Name is the same as the field.

Like [forms]![Search]![Student_ID] & “*”

Continue with all fields using the above description, note change the Textbox Name only. Save the Query.

Next, we need a report to run the results. On the Report section and create a report using the query which already exists. Design it to suit your specifications.

On the Form Search, Insert a button to direct you to opening the report on preview.

Now our search form is ready to be used. On running the form view, by entering Information on any of the above textbox, the report below will be generated with values equal to the search. On this example, I choose to search 1 in the Student ID and the generated report is below.

On the form Search, you can enter any Number of restrictions to generate the report.

Read More