Zedomax DIY - How to Make a Simple Green Laser Projector! Zedomax اليدويه -- كيفية جعل مجرد جهاز عرض الليزر الاخضر!



Click Here to View in Full Screen Mode انقر هنا للاطلاع على كامل الشاشه
Since I have been playing with green lasers for about a year, I never saw any good use for them except to point them to the sky or buildings. وبما أنني قد لعب مع الاخضر الليزر لمدة عام تقريبا ، اي ما رأيت الاستخدام الجيد لها إلا ان تشير إلى السماء أو المباني.
Since the green laser has a lot of power, especially the منذ الليزر الاخضر لديه الكثير من الطاقة ، ولا سيما one DragonLasers sent me recently ارسل لي احد dragonlasers في الاونة الاخيرة , I decided it was time to make a simple green laser projector without me spending days to build one. ، قررت ان الوقت قد حان لجعل بسيطة الاخضر الليزر عارض لي دون انفاق ايام لبناء واحد.
This simpler green laser projector was made so I could use it for my next party and I always wanted to make this. هذا أبسط جهاز عرض الليزر الاخضر هو الاول الذي احرز حتى يمكن استخدام هذا الطرف لوجهتي المقبلة واردت دائما لجعل هذا. Although this laser projector only does one animation, 2 whirpools, I planned to improve upon after making this very basic version. ورغم ان هذا الليزر جهاز عرض واحد فقط لا للرسوم المتحركه ، 2 whirpools ، الاول عند التخطيط لتحسين جدا بعد ان جعل هذه الصيغة الاساسية.
For complete DIY HOWTO, click here Howto الكامل للأعمال اليدويه ، اضغط هنا
When the motor is stopped, it also displays a bunch of green laser stars like this: عندما يتوقف المحرك ، كما تعرض مجموعة من نجوم الأخضر ليزر مثل هذا :

DIY Linux Web Server HACK - Automate your MySQL MySQL database backups اعمال اليدويه المأجور خادم الويب لينكس -- اتمته الخلية الخلية قاعدة البيانات الخاصة بك احتياطية
Okay, I’ve been running dedicated servers for couple years now and I used to mess around with Linux boxes back in college. حسنا ، أنا كنت تشغيل خدمة مخصصة لزوجين سنوات حتى الآن وكنت الفوضى في جميع انحاء مع عودة صناديق لينكس في الكليه.
Here’s an essential automatic script and a cron job you will need in order to keep your backup automatic . وإليك النص اساسي التلقائي cron وسوف تحتاج الى عمل من اجل ابقاء الاحتياطيه الخاصة بك تلقائيا.
Yes, if you get a dedicated server, don’t get their stupid extra $15/month for backing up your database. (All they do is make scripts like this one and charge you for it) نعم ، إذا كنت احصل على تقديم خدمة جادة ، لا حصول على وغبي 15/month دولار اضافية لدعم database.â الخاصة بك (كل ما نفعله هو ان تجعل مثل هذه الكتابات وانت المسؤول انه ل)
You can follow this example and go spend that money on junk food. يمكنك اتباع هذا المثال وتذهب الاموال التي تنفق على الاغذيه الزباله.
So all you have to do is FTP your backup files. لذا كل ما عليك فعله هو بروتوكول نقل الملفات الاحتياطيه الخاصة بك الملفات.
This is way better than going into your phpMyAdmin and downloading from the web interface since the file is already ready for you to download. وهذا هو وسيلة أفضل من الذهاب الى حسابك في phpmyadmin وتنزيل من شبكة الانترنت منذ الملف بالفعل جاهزه للتحميل.
Here’s how you do it: وإليك كيف تفعل ذلك :
1) Make a new file called backup.sh in your home directory. 1) تقديم ملف جديد يسمى backup.sh في منزلك الدليل. 2) Use the following syntax: 2) استخدام النحو التالي :
mysqldump -u[USERNAME] -p[PASSWORD] –opt [DATABASE NAME] > /root/backup/DATABASE1.sql mysqldump - ش [اسم المستخدم] - ف [كلمة السر] - الاراضي الفلسطينية المحتلة [اسم قاعدة البيانات]> / root/backup/database1.sql Here’s an example backup.sh file if you had 2 databases: واليك مثال backup.sh الملف لو كان لديك 2 قواعد البيانات :
mysqldump -uUser1 -pPassword1 --opt Database1 > /root/backup/Database1.sql mysqldump -uUser2 -pPassword2 --opt Database2 > /root/backup/Database2.sql tar cvf /root/backup/sqlbackup.tar /root/backup/* mysqldump - uuser1 - ppassword1 -- يختار database1> / root/backup/database1.sql mysqldump - uuser2 - ppassword2 -- يختار database2> / root/backup/database2.sql القطران cvf / الجذر / الاحتياطيه / sqlbackup.tar / الجذر / النسخ الاحتياطي / * You can test your script by typing this: يمكنك اختبار الخاص بك بكتابه هذا النص :
sh backup.sh ش backup.sh (The mysqldump will overwrite the older file if you run this more than once) (Mysqldump سوف كبار السن فوق الملف اذا قمت بتشغيل هذا اكثر من مرة واحدة)
3) If everything is working good, now you can put that script to be run once a day in your cron job. 3) اذا كان كل شىء يعمل جيدا ، يمكنك الآن ان وضع سيناريو لتشغيلها مرة واحدة في اليوم cron الخاص بك في الوظيفة.
For Fedora Core, you can edit this file /etc/cron.d/sa-update لفيدورا الاساسية ، ويمكنك تعديل هذا الملف / الخ / cron.d / سا - آخر التطورات
Add the following line: اضافة السطر التالي :
10 3 * * * root sh /root/backup/backup.sh 10 3 * * * الجذر ش / الجذر / الاحتياطيه / backup.sh This will execute the script once a day at 3:10AM. تتولى تنفيذ هذا السيناريو مرة واحدة فى اليوم فى الساعة 3:10.
Now simply download one tar ball file whenever you feel like backing up your database. الآن مجرد تحميل ملف واحد القطران الكرة كلما كنت تشعر مثل نسخ احتياطية من قاعدة البيانات.
You can probably change this a little bit and use it for many other things like backing up all your files too. يمكنك تغيير هذا ربما قليلا واستخدامها لاشياء اخرى كثيرة مثل دعم كل ما تبذلونه من الملفات ايضا. (which I do) (الذي أنا)
If you have multiple servers like me, you can also automate your scripts to download backup databases to each server. اذا كان لديك متعددة لخدمة مثلى ، يمكنك أيضا مخطوطات الآلي الخاص بك لتحميل احتياطية لكل قواعد البيانات الخادم. That keeps things real redundant in case of server failure. الاشياء الحقيقية التي تحافظ على لزوم له في حالة عدم الخادم.






