Saifur Rahman Rasel

I am a Web Developer

Saifur Rahman Rasel

I’m a web developer and have been in business for 5 years.I work from home and run my own private call center.I have built some of the best websites on the web. My skills include: HTML, CSS, JavaScript, PHP, programming, web design, Adobe Photoshop , customer service, and all other responsibilities of a business owner.

  • Provati 18,Lichu Bagaan,Sylhet, Bangladesh.
  • +8801782614627, +8801643215579
  • saifurrahmanrasel4627@gmail.com
Me

My Professional Skills

Web Design 100%
Web Development 90%
App Development 60%
Adobe Photoshop 100%

Awesome features

Aliquam commodo arcu vel ante volutpat tempus. Praesent pulvinar velit at posuere mollis. Quisque libero sapien.

Animated elements

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempus cursus lectus vel pellentesque. Etiam tincidunt.

Responsive Design

Pellentesque ultricies ligula a libero porta, ut venenatis orci molestie. Vivamus vitae aliquet tellus, sed mollis libero.

Modern design

Duis ut ultricies nisi. Nulla risus odio, dictum vitae purus malesuada, cursus convallis justo. Sed a mi massa dolor.

Retina ready

Vivamus quis tempor purus, a eleifend purus. Ut sodales vel tellus vel vulputate. Fusce rhoncus semper magna.

Fast support

Suspendisse convallis sem eu ligula porta gravida. Suspendisse potenti. Lorem ipsum dolor sit amet, duis omis unde elit.

0
completed project
0
design award
0
facebook like
0
current projects
  • Some Important Code For Web Development In Laravel


    Some Important Code For Web Development In Laravel :

                Toastr CDN Code :

                    CSS CDN :   <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.css">

                     JS CDN :  <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>


                    Toastr code: 

        <script>

          @if(Session::has('message'))

            var type = "{{Session::get('alert-type','info')}}";

            switch(type){

              case 'info':

                toastr.info("{{ Session::get('message') }}");

                break;

              case 'success':

                toastr.success("{{ Session::get('message') }}");

                break;

              case 'warning':

                toastr.warning("{{ Session::get('message') }}");

                break;

              case 'error':

                toastr.error("{{ Session::get('message') }}");

                break;

          }

          @endif

      </script>


            Toastr Notification Code :

                if($category){

        $notification = array(

        'message' => 'Successfully Data Inserted',

        'alert-type' => 'success'

        );

        return Redirect()->back()->with($notification);

            }else{

        $notification = array(

        'message' => 'Something Went Wrong',

        'alert-type' => 'error'

        );

        return Redirect()->back()->with($notification);

            }



              Sweetalert CDN:

                  JS CDN: <script src="{{ asset('https://unpkg.com/sweetalert/dist/sweetalert.min.js')}}"></script>



                   Sweetalert Notification: 

           <script>

          $(document).on("click", '#delete', function(e){

            e.preventDefault();

            var link = $(this).attr("href");

            swal({

              title: "Are you want to delete?",

              text: "Once delete, this  will  be permanently delete!",

              icon: "warning",

              buttons: true,

              dangerMode: true,

            })

            .then((willDelete) => {

              if (willDelete) { 

                  window.location.href = link;

              } else {

                swal("Safe Data");

              }

            });

          });

      </script>



         Intervention Image :

    composer require intervention/image


    After you have installed Intervention Image, open your Laravel config file config/app.php and add the following lines.

    In the $providers array add the service providers for this package.

    Intervention\Image\ImageServiceProvider::class

    Add the facade of this package to the $aliases array.

    'Image' => Intervention\Image\Facades\Image::class 

    Publish configuration in Laravel

    $ php artisan vendor:publish --provider="Intervention\Image\ImageServiceProviderLaravelRecent"



    Socialite Website:

    https://console.developers.google.com/

    https://www.tutsmake.com/laravel-8-socialite-github-login-tutorial/


    Comment :

    https://developers.facebook.com/docs/plugins/comments/#configurator


    Mailtrap:

    https://mailtrap.io/

  • Height Property in HTML & CSS

    Height  Property is used for sets the height of an element.



    Height is not same with margin,padding,border.We can easily resize an element by this height property. In html & CSS this height property is used by :
                                       
                                               div.a {
                                                               height :  50px;                                             
                                                         }
       
     That means , in a html div element , the div properties  stands with 50px height..The contents in this div are  remaining with the same size of height property..
                                                          
                                                    div.a {
                                                                  height: auto;                                                 
                                                              }
       
     
    If   height : auto;   the element will automatically adjust its height to allow its content to be displayed correctly .

    We can use the percentage (%)  value  as a height. For example :
                     
                                                         div.a {
                                                               height :  50%;                                             
                                                         }

    This means, it's create a space of 50%  height of a div element.

    The  min-height  and  max-height  properties override the height property.     



  • Conditional Logic & Operator In C Programming


     Conditionl Logic & Operator:

    Conditionl Logic used to write a program.It is most important in C programming. Conditionl Logic is used by some operators.

    •  Such as,Arithmetic operator.Five arithmetic operator are used in C.They are :

                         + Addition
                     -Subtraction
                    *Multiplication
                     /Division
                   %Remainder after integer division

    For example in C,

    #include<stdio.h>
    int main( )
    {
    int a=20,b=5,c;
    c=a+b;
    printf("%d",c);
    }

           The  output of this program is 25
    Other arithmetic operators  are work in same ways.
    •  Another operator is Unary operator.There are two other commonly used unary operators.The increment(++)  operator  &  the  decrement  (--) operator.Increment  means ,value increased by 1.Decrement means, value decreased by 1.
    For example,
    #include<stdio.h>
    int main( )
    {
    int a=20;
    a++;
    printf("%d",a);
    }

    a++  means,
                       a=a+1
    so the output is  21

    And  a--  means,
                        a=a-1


    •  Another operator is Relational operator  ,which is used in conditional logic.There are  6  relational operator in  C.They are,
    Operator                       Meaning
         >                               greater  than
         >=                             greater  than  or  equal  to
         <                               less than
         <=                             less than  or  equal  to
         ==                             equal  to
         !=                              not  equal  to

    For  example,

    #include<stdio.h>
    int main( )
    {
    int a=20,b=5;
    if(a>=b)
    {
                                      printf("True");
                                  }
                                else
                                 {
        Printf("False");
              }
    }

    The output is  True
    Because a=20 which is greater than b=5
    The condition of if(a>=b)  is true.So compiler check the statement in if condition and print this statement.And compiler check else condition when if condition is false….

    •  Another is Assignment operator.Which is,
    Identifier = expression

    Identifier means variable & expression means constant/value.
    Such as,
                       a=3
                        b=c
                       sum=a+b
    These are assignment operator.Here 3 assigned to the variable a, c assigned to b and so on..

    Remember that, assignment(=) and equality(==)  operator are distinctly different.Assignment operator means assign value but equality operator means the same value between two expressions.


    •  If ,else  condition are used in conditional logic.Wherever if  condition  is true then this program print statement of if.Otherwise print statement of  else. We can clear this by following program:



     In this code, if  a=20,b=10  then (20>10) which is true.And  compiler check the if statement.Store  c=20+10=30  .Print  30
    But when input a=10,b=20 then (10>20) which is false .And compiler check else statement .Then print 10



  • Find Maximum and Minimum Number in C Programming.



    Find Maximum and Minimum Number in C Language with conditional logic.
     
    Maximum Number find: 
    Maximum number is the number which is greater then all of given number. Find a maximum number from given number is a easy process.We can find maximum number by using (if/else) conditional logic.
    Firstly we have to take some integer numbers.Then check these number whether such a number is greater then each number.In c Programming , we check a number with each of these others number. If found a number which is greater then selected number, then we select this number as a maximum number.
    We find this maximum number in c coding,
    From this code, input several 3 numbers.If a=10,b=25,c=20.Then output is Maximum number is : 25.

     Minimum Number find:
    In other side, Minimum number is the number which is smaller  then all of given number. It is also a easy process.We can find minimum number by using (if/else) conditional logic.
    In this process, we firstly  take some integer numbers. Then check these number whether such a number is smaller  then each number.In c Programming , we check a number with each of these others number.  If found a number which is smaller than selected number, then we select this number as a minimum number.
    We find this minimum number in c coding,

     From this code, input several 3 numbers.If a=10,b=25,c=20.Then output is Minimum number is : 10.

    We can find Maximum and Minimum Number with above processes.


  • Loop in C Programming

    C programming  loop: For Loop

    To repeat a particular code block, loop is used in a programming language. In this chapter we learn to create a for loop in C programming.

    The programming loop is used to repeat any code block until the condition is false.

    How does the for loop work?





        Initialization Statement is only executed once.
        Then test Expression is executed. If false (0) the end of the for loop is over. But if the value of the test expression is true then the code block for the for loop is executed and the value of update Statement is updated. It continues until test Expression is false.



       
        The value entered by the user is 100. The initial value of the variable count is assigned 1 and the test expression will be evaluated. Since count <= 100 (1 is smaller than 100) is true, so the code block of the loop will be executed and the sum of sum will be equal to 1.
    Then updateStatement ++ count will be equal to count value of 2 count. Again testExpression will be executed. Since 100 is less than 2, so the value of testExpression will be true and the code block in the loop will be executed. The value of sum will be equal to 3.

    This process will continue until the value of count is not reached 101 and the value of sum will be determined.
    When count is equal to value 101 test Expression will be false because 101 is greater than  100. So the end of the loop here will be done and the next code will be edited. The sum at the end of the loop will be printed.
    Finally,it shows that ,the output is 5050.
  • C Language

    What is C programming?

    C  is the programming language used for general purposes. C has extensive use of various operating systems (such as windows,linux, etc.) to build various types of software. Even C is used to create 3D movies. In a word, there is no such sphere where C does not have to walk.


    C is a very effective programming language. Written code for a system works in other operating systems without any change.
    We have already mentioned that C is a simple and easy language to start learning programming. If you know C programming, then you just do not understand how C program works, but you can draw a mental picture of how the computer works.

    C program faster :

    Comparison of languages like Java and Python offers many features, such as garbage collection and dynamic typing. It also makes programming easier for programmers to write. However, due to additional processing, they have less performance compared to C.C language believes in programmers and permits editing programs directly through computer hardware.


     But this is not possible for most high-level programming languages. This is one of the main reasons to start learning C programming.
  • Web Design & HTML



           Web Page & HTML:

    • Web page made by using HTML.HTML is the combination of some Tags.

    •  Tag means ,the meaning of a sentence which is used in a HTML.

    • Two kinds of Tags are used in HTML.These Tags are Empty Tag & Container Tag.

    • Empty Tag has not ending Tag.It has only starting Tag.For example:  <br>,<meta>,<img>
    • Container Tag has ending Tag & starting Tag.For example:
                      <u>some paragraph</u>,
                      <b> some paragraph</b>
    • In HTML,we use attribute to define a Tag.For example:
                            <img align="centre">,
                            <img align="left">
    • Web page has Head and Body section.Head section used as the title of a HTML & Body section used  to show the page of HTML in a web page.Such as:
                        
         

  • What is HTML language ?

     HTML is a computer language which means  HyperText Markup Language.


             HTML is a computer language devised to allow website creation. We can make a website by      
     html language.
                              
                           

               HTML :
    • HyperText is the method by which you move around on the web   by clicking on special text called hyperlinks which bring you to the next page. The fact that it is  hyper  just means it is not linear . You can go to any place on the Internet whenever you want by clicking on links , there is no set order to do things in.
    • Markup is what HTML tags do to the text inside them. They mark it as a certain type of text ..
    • We design a page by use HTML.
    • We can change font size,font color,font weight by using HTML.
    • We can make menu list by it..
    • HTML is a Language, as it has code,words and syntax like as any other languages.
    • By using HTML ,we can make many other boxs such as comment box etc.

    GET A FREE QUOTE NOW

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.

    ADDRESS

    Provati 18,Lichu Bagaan,Sylhet, Bangladesh.

    EMAIL

    saifurrahmanrasel4627@gmail.com
    srr@mail.com

    TELEPHONE

    +880188110,
    +880188211

    MOBILE

    01782614627,
    01643215579