Thursday, 25 June 2015

Its Over

I am shutting my blogger down I will no longer be posting new blogs on blogger as the blogger site is inadequate to deal with the modern day blogger demands such as a good seo support.There are other platforms out there that deliver and support the blogs people post such as wordpress and that is where I will be putting all my new blogs from today here is the link to my wordpress blog.

https://succedd.wordpress.com

Wednesday, 24 June 2015

Stress One of the greatest problems to man

There is no cure to stress, for me it is continuous and endlessly thinking about all the mistakes made in my life sadly. It affects how i work or if i work  as you constantly think why did I make that decision. 

The one way you can stop yourself from become depress is by coming up with plan to what you want to do. I want to be the best in my career so i have  to retrain to become the best. Second i believe you have to accept your plan will take time so you have to be positive and not think you can't succeed. Positive thinking ultimately  defeats stress to be honest but it is hard if you been through a lot of life experience . 

Faith in God definitely helps against stress as it stops you from becoming hopeless and not having nothing to believe in  therefore not living for anything that is why so many commitment suicide in the west because of hopeless. 


Saturday, 20 June 2015

Make your own decision

Never let people pick or  make decisions for you as you will end up regretting it  later on in life whether that decision is what career you want to work in or  what  phone you think is best for you make sure you always ask yourself is this decision i want to take ? is this the best decision for me ? Living in regret is not a nice thing you constantly think about it for me it eats at you constantly think why did i make such a decision.


Below is what i have done recently in coding, its a neat piece of code i have written which basically shows  text box in a triangular shape
which is queit unique if you ask me. Check it out for yourself .
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body{
background:#e3e3e3;
font-family:sans-serif;
width:50%;
margin:100px auto;
}
a{

padding :10px;
color:white;
font-weight:bold;
text-shadow:0 1px 0 black;
line-height:50px;
border-right:30px solid transparent ;
border-bottom:30px solid #4c4c4c ;
height:0;
display:inline-block;
}
div{
border:1px solid #4c4c4c;
border-top:1px solid #4c4c4c;


}
</style>
</head>
<body>
<a href="#">New day </a>
<div>

<h3>Hellow world !</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
</body>
</html>

Thursday, 18 June 2015

Why you should always want to work ?

It's so important to want and love to work you learn so much by working. For people who want to stay at home and live off benefits i do not get your mentality because there is so much opportunity in England to grow your career and make lots of money. I wouldn't say there is more opportunity in England than america because you hear all these success stories such as Google, apple and Facebook but there is a good amount of opportunity here but  you have to be willing to take it.

I need to start promoting this site more i might have a twitter account soon and fix up some posts that i made earlier.



Blogger has given me so many skills that i thought i never had !!!!!!!!

Monday, 15 June 2015

Finially On Youtube

I finally have it my own youtube channel with two new videos so proud to be doing this, me creating youtube videos would
definitely be a highlight of my career as i would be helping people same way people helped me when I didn't know much als
sometimes you have to learn by teaching so me teaching i will be learning more about coding and eventually become one
of the best programmers.

Here is my youtube channel

https://www.youtube.com/channel/UCn-q8uf4Vu97gyIGQofYX4g

Tuesday, 9 June 2015

Right Track

In coding i'm on  the right track but I know it's going to take time to be the best at it. Learning takes patience
I must always remember that phrase  to keep calm and not do something that would put me off track therefore
puting me ten steps back. Am I trying to write poetry maybe you have seen the intent behind my writing ?

HIGH SALARIES FOR PROGRAMMERS



1. When unemployed you get to live life unemployed for a longer period but that depends on your savings
2. Travel more frequenly  with a higher salary you get to go to place you wanted to go to but never could finance it
3. If you want to get married and you earn more than 18,000 a year you can get a spouse visa for your wife
4. Rent a house easier in london
5. Not worry about money so much
6. Invest in  a business so that you won't be always working one day if that investment matures you can retire from working for people


These are my views maybe you can share your views below in the comments area

Regards

Thursday, 28 May 2015

Learning ... Comments

Learn to do things in diffent ways because you learn from doing things differently,
I strongly believe that it is become known knowledge that the best way to teach is by video rather than text.
Anyway here is what I did today, basically it store 1 or more text files into a zip the code its below

<?php
require_once 'classes/zipper.php';
$zipper= new Zipper;
$zipper->add('files/one.txt');
$zipper->add(array('files/two.txt','files/three.txt'));
$zipper->store('files/font.zip');


class Zipper {
private $_files= array(),
$_zip;

public function __construct (){
$this->_zip = new ZipArchive;
}


public function add($input) {
if(is_array($input)){
$this->_files=array_merge($this->_files, $input);
}
else {
$this ->_files[]=$input;
}
}
public function store($location = null){
if(count($this->_files)&&$location){
foreach ($this->_files as $index => $file){
if(!file_exists($file)){
unset($this->_files[$index]);
}
}

if($this->_zip->open($location,file_exists($location) ? ZIPARCHIVE::OVERWRITE :ZIPARCHIVE ::CREATE)){
foreach($this->_files as $file){
$this->_zip->addFile($file,$file);
}
$this->_zip->close();
}
}
}
}

Sunday, 24 May 2015

Views I Get Analysis

I  am really starting to see people come view my blogs maybe its because  I leave  codes (jquery, html) in the blogs maybe that is what is attracting people to come to my blogs they might be looking for that specific code and they find it in my blog.

I am such a curicous person  I love to know things like this I believe I am also an analyticial person but I am going to keep posting codes of (html, jquery) in my blogs because i like to benefit people.


Here is the next thing I did in html, jquery

I  created a toggle function for when you want to hide text or a image then reveal it when it is click on check out the code it is below


<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
#hidden {
display :none ;

}

</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<a id="toggle" href="javascript:void(0);">Click me </a>
<div id="hidden">
You have been hidden

</div>
<script type="text/javascript">
$("#toggle").click(function(){
$("#hidden").slideToggle("slow");
})

</script>
</body>
</html>

Friday, 22 May 2015

Becoming A Good Blogger What It Takes ?

I need to try to learn what it takes to be a good blogger but I guess one of the things would be to share relevant information that benefit people. I need to definately research what it takes to be  a good blogger because when I  do something I always want to be the best at it regardless how hard it may be.

Regarding work I have refocus my skills to be a web developer rather than being stuck in seo  as there is more opportunity in web development than seo to make more money grow and   it is less  competitve  when  looking for  web develop position .

 Below is a  neat hover code that i did using jquery:

Tell me what you think ?




<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<a href="#" id="menuV">Videos</a>/
<a href="#" id="menuC">Codes</a>/
<a href="#" id="menuF">Forum</a>
<div id="menu"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript">
$('#menuV').hover(function(){
$('#menu').html("Free video tutorials")
})
$('#menuC').hover(function(){
$('#menu').html("Coding is not as easy")
})
$('#menuF').hover(function(){
$('#menu').html("What a great forum")
})

</script>
</body>
</html>

Wednesday, 20 May 2015

Youtube Thinking ? MayBe ? Maybe Not ?

I am thinking of starting my own youtube channel I  strongly believe in being with the times I always say to my older brother if we were in the 60's would we have gone  into computers or if we were in the 90's would we have started a internet company. The point I am trying to make you have to be a early adopt of new tech and you will always benefit long term. Lets face it having a job is for the uncreative.

Saturday, 16 May 2015

Benefits of Hard Work

Hard work is one of the best things to learn when young becuase you get to the places you want to be quicker than when you are lazy. Me not working or learning to work hard when i was young is one of my biggest regrets, and I still look back to it, how did I let myself not want to work hard.


Also, learn to copy when you do not understand picasso said something like good artist copy great artist steal. That statement is incredible because  when you look at it, it is so true.


I know I am going on about things but these are things that would benefit you over time because I am highlighting my own life experience and mistakes so that you do not have to make the same mistakes as me. So the next issue I want to tell you about is learn to love to read because your going to have to if you want to get better at english, it is one of the core things your need  to improve.

Regards

To myself
LOOOL


Tuesday, 12 May 2015

What I Created Today ? (A Heart )

OK today i created a heart image using CSS3 and HTML5

Below is the code

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.heart{
position:relative;
margin:20px;
height:170px;
width:200px;


}
.heart:before,
.heart:after {

content:"";
position:absolute;
height:160px;
top:5px;
width:100px;
background:red;
border-radius :50px 50px 0 0;
}
.heart:before{
left:100px;
-webkit-transform:rotate(-45deg);
transform:rotate(-45deg);
-webkit-transform-origin:0% 100%;
transform-origin:0%100%;
}
.heart:after {
left:0;
-webkit-transform:rotate(45deg);
transform:rotate(45deg);
-webkit--transform-origin:100% 100%;
transform-origin:100% 100%;
}
</style>
</head>
<body>
<div class="heart"></div>
</body>
</html>

Here is the code just put it in a html extension page. Tell me what you think by leaving a comment as  i have not
not still had a comment from my readers.
Also small note, i am going to be working to improve my jquery, SQL and phtoshop skills so expect more posts to be about those things.

Regards

Monday, 11 May 2015

Continue blogging

I must try my best to continue posting blogs as it would help with my english so desperate to become better at english.
I neeed to find a way to make this blog more relevant to people and benefit people.
I want to start posting all the coding projects i have done.


Let me just start today

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body{
font:70% Arial;
color:#063774;
}
table {
border:1px #B4D0F3 solid;
border-collapse:collapse;
font-size:3em;
}
tr.stripped{
background-color:#E5EFFE;
}
th{
padding:10px18px;
background-color:#B4D0F3;
text-align:left;
}
td{
padding:10px 18px;
}
</style>


</head>
<body>
<table>
<thead>
<th>Name</th>
<th>Date Of Birth</th>
</thead>
<tbody>
<tr>
<td>Emma</td>
<td>Girl</td>
</tr>
<tr>
<td>John</td>
<td>Boy</td>
</tr>
<tr>
<td>Eva</td>
<td>Girl</td>
</tr>
<tr>
<td>Smith</td>
<td>Boy</td>
</tr>
</tbody>
</table>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('table tbody tr:nth-child(even)').addClass('stripped');
})






</script>
</body>
</html>


This code helps build a zebra like table whereby the second and fourth rows are different colors to the first and third,
Hope that benefited you.

Monday, 4 May 2015

Never give up

It is so easy to give up  doing blogs because you look at how many people are reading your blogs and you find   that it is not alot. It is a incredibly low amount a few people looking at what you write but I guess I must believe things grow by time.

OK

So what have I been up to ....

I will post all the things I have created on this soon
In sha ALLAAH