With Midrub you are able to make simultaneous posts on multiple social networks at a time. Just connect to your social network accounts and with just one click publish your message, photo or whatever you want to share.
https://www.midrub.com/
Saturday, August 20, 2016
Friday, January 3, 2014
Posted by dabdoonet on 9:48 AM with 1 comment
Hi guys. This is my new tutorial where you can see how to install Zend Framework 2 in just 5 minutes.
First you need to download and install xampp server from http://www.apachefriends.org/en/xampp.html
Runs it and create a new folder in C:\xampp\htdocs
Install GIT app from http://git-scm.com
Click on right button of mouse on new folder and choose Git Bash.
Enter this address git clone git://github.com/zendframework/ZendSkeletonApplication.git and press Enter button.
Next, press Shift taste and click on right button of mouse on new folder and choose Open Compose Here.
Enter this address C:\xampp\php\php.exe composer.phar self-update and press Enter.
Enter this address C:\xampp\php\php.exe composer.phar install and press Enter.
Open httpd-vhosts.conf file from C:\xampp\apache\conf\extra and add this code:
<VirtualHost *:80>
DocumentRoot "/xampp/htdocs/new/public"
ServerName new
ServerAlias www.new
SetEnv APPLICATION_ENV "development"
<Directory "/xampp/htdocs/new/public">
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Open host file from C:\Windows\System32\drivers\etc and add this code:
127.0.0.1 new
Next, open you browser and enter this address: new/
First you need to download and install xampp server from http://www.apachefriends.org/en/xampp.html
Runs it and create a new folder in C:\xampp\htdocs
Install GIT app from http://git-scm.com
Click on right button of mouse on new folder and choose Git Bash.
Enter this address git clone git://github.com/zendframework/ZendSkeletonApplication.git and press Enter button.
Next, press Shift taste and click on right button of mouse on new folder and choose Open Compose Here.
Enter this address C:\xampp\php\php.exe composer.phar self-update and press Enter.
Enter this address C:\xampp\php\php.exe composer.phar install and press Enter.
Open httpd-vhosts.conf file from C:\xampp\apache\conf\extra and add this code:
<VirtualHost *:80>
DocumentRoot "/xampp/htdocs/new/public"
ServerName new
ServerAlias www.new
SetEnv APPLICATION_ENV "development"
<Directory "/xampp/htdocs/new/public">
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Open host file from C:\Windows\System32\drivers\etc and add this code:
127.0.0.1 new
Next, open you browser and enter this address: new/
Saturday, December 28, 2013
Posted by dabdoonet on 1:00 PM with No comments
Resumonk is a cool web tool that helps you easily and quickly create your original resume online in minutes. Resumonk will helps you to write your resume in minutes as a Microsoft Word or PDF document.
To create a resume with Resumonk, you just need to register an account. Choose a template for your resume and fill in the form. Next, you must click on the Save button and save your resume as a PDF or Word file.
You need to customize your résumé for each job application. Resumonk helps you do that effortlessly.
http://www.resumonk.com
To create a resume with Resumonk, you just need to register an account. Choose a template for your resume and fill in the form. Next, you must click on the Save button and save your resume as a PDF or Word file.
You need to customize your résumé for each job application. Resumonk helps you do that effortlessly.
http://www.resumonk.com
Wednesday, December 25, 2013
Posted by dabdoonet on 2:52 PM with No comments
Hi guys! Today I want to show you a way to capture images from webpages! Page Capture is a free Opera extension that helps you to capture all images from a web page.
With Page Capture you can quickly and easily make a screenshot of a whole page, a selected part or the visible content of a tab, and save it to a file (JPEG or PNG) or share it via a URL.
You can also add text, highlight or redact the captured image.
Download Page Capture
With Page Capture you can quickly and easily make a screenshot of a whole page, a selected part or the visible content of a tab, and save it to a file (JPEG or PNG) or share it via a URL.
You can also add text, highlight or redact the captured image.
Download Page Capture
Tuesday, December 24, 2013
Posted by dabdoonet on 4:21 AM with No comments
Hi guys! In this tutorial I want to show you how you can easily create your WiFi Hotspot without a router.
So, if you want to create a WiFi hotspot you just need to install the free version of Connectify. Connectify will turn your PC into a Wi-Fi hotspot and share Internet with all your devices.
Download Connectify
Connectify supports sharing Internet from 3G/4G cards in addition to a wide variety of other USB cards and dongles.
Next, run Connectify.
Thank you for your attention!
Other Tutorials:
How you can change the Facebook color
Hi guys! Today i want to show you a way to how you can easily change the color of your Facebook timeline.
So, if you want to create a WiFi hotspot you just need to install the free version of Connectify. Connectify will turn your PC into a Wi-Fi hotspot and share Internet with all your devices.
Download Connectify
Connectify supports sharing Internet from 3G/4G cards in addition to a wide variety of other USB cards and dongles.
Next, run Connectify.
Other Tutorials:
How you can change the Facebook color
Hi guys! Today i want to show you a way to how you can easily change the color of your Facebook timeline.
Monday, December 23, 2013
Posted by dabdoonet on 6:09 AM with 1 comment
Hi guys! This is my first tutorial where i want to show you how can i build a simple HTML website from zero. I will explain to you how you can easily build a HTML website even if you don't know HTML.
The first step:
I start to build my website by using <html></html> tags.
<html> is an opening tag and must html be closed with a closing tag when you are finished typing a html code. This tags are often used to describe the same thing.
The second step:
I will add the <head></head> tags between HTML tags.
<html>
<head>
</head>
<html>
<head> tags provides information about my webpage.
The third step
I will add the <title></title> tags between HEAD tags.
<html>
<head>
<title>TutScripts</title>
</head>
<html>
<title> tags lets me write the title of the page.
The fourth step
I will add the <body></body> tags after <head> tags.
<html>
<head>
<title>TutScripts</title>
</head>
<body>
</body>
<html>
<body> provides the visible page content.
The fifth step
I will add the <p></p> tags between <body> tags.
<html>
<head>
<title>TutScripts</title>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
<p> displays a text paragraph.
The sixth step
I will use CSS to customize my text. To do that i will add <style></style> tags between <head> tags.
<html>
<head>
<title>TutScripts</title>
<style>
</style>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
I use color: to change color of the text in paragraph. Then, I will add bold to the text by using font-weight tags.
<html>
<head>
<title>TutScripts</title>
<style>
p{color:#900;
font-weight:bold;}
</style>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
The first step:
I start to build my website by using <html></html> tags.
<html> is an opening tag and must html be closed with a closing tag when you are finished typing a html code. This tags are often used to describe the same thing.
The second step:
I will add the <head></head> tags between HTML tags.
<html>
<head>
</head>
<html>
<head> tags provides information about my webpage.
The third step
I will add the <title></title> tags between HEAD tags.
<html>
<head>
<title>TutScripts</title>
</head>
<html>
<title> tags lets me write the title of the page.
The fourth step
I will add the <body></body> tags after <head> tags.
<html>
<head>
<title>TutScripts</title>
</head>
<body>
</body>
<html>
<body> provides the visible page content.
The fifth step
I will add the <p></p> tags between <body> tags.
<html>
<head>
<title>TutScripts</title>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
<p> displays a text paragraph.
The sixth step
I will use CSS to customize my text. To do that i will add <style></style> tags between <head> tags.
<html>
<head>
<title>TutScripts</title>
<style>
</style>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
I use color: to change color of the text in paragraph. Then, I will add bold to the text by using font-weight tags.
<html>
<head>
<title>TutScripts</title>
<style>
p{color:#900;
font-weight:bold;}
</style>
</head>
<body>
<p>Hello World! </p>
</body>
<html>
Sunday, December 22, 2013
Posted by dabdoonet on 2:15 PM with No comments
Hi guys! Today i want to show you a way to how you can easily change the color of your Facebook timeline.
So, you just need install Change My Facebook Color extension in the Google Chrome.
You can find the Change My Facebook Color extension at the https://chrome.google.com/webstore/detail/change-my-facebook-color/ipopodflddngcbmefgnnmfggjpknepha?hl=en
Install it in your browser! Next, click on the Change My Facebook Color button and choose a new color for your Facebook timeline.
Drag and drop the Change My Facebook Color bookmarklet to bookmarks bar and go to your Facebook timeline. Then click on the Change My Facebook Color bookmarklet!
So, you just need install Change My Facebook Color extension in the Google Chrome.
You can find the Change My Facebook Color extension at the https://chrome.google.com/webstore/detail/change-my-facebook-color/ipopodflddngcbmefgnnmfggjpknepha?hl=en
Install it in your browser! Next, click on the Change My Facebook Color button and choose a new color for your Facebook timeline.
Drag and drop the Change My Facebook Color bookmarklet to bookmarks bar and go to your Facebook timeline. Then click on the Change My Facebook Color bookmarklet!
Download Change My Facebook Color
Other Tutorials:
Make a wireless home network connection without having to configure anything
Other Tutorials:
Make a wireless home network connection without having to configure anything
Hi guys! In this tutorial I want to show you how you can easily create your WiFi Hotspot without a router.
Subscribe to:
Posts (Atom)