• Wyszukiwanie zaawansowane
  • Kategorie
  • Kategorie BISAC
  • Książki na zamówienie
  • Promocje
  • Granty
  • Książka na prezent
  • Opinie
  • Pomoc
  • Załóż konto
  • Zaloguj się

Ruby Recipes: A Problem-Solution Approach » książka

zaloguj się | załóż konto
Logo Krainaksiazek.pl

koszyk

konto

szukaj
topmenu
Księgarnia internetowa
Szukaj
Książki na zamówienie
Promocje
Granty
Książka na prezent
Moje konto
Pomoc
 
 
Wyszukiwanie zaawansowane
Pusty koszyk
Bezpłatna dostawa dla zamówień powyżej 20 złBezpłatna dostawa dla zamówień powyżej 20 zł

Kategorie główne

• Nauka
 [2952079]
• Literatura piękna
 [1850969]

  więcej...
• Turystyka
 [71058]
• Informatyka
 [151066]
• Komiksy
 [35579]
• Encyklopedie
 [23181]
• Dziecięca
 [620496]
• Hobby
 [139036]
• AudioBooki
 [1646]
• Literatura faktu
 [228729]
• Muzyka CD
 [379]
• Słowniki
 [2932]
• Inne
 [445708]
• Kalendarze
 [1409]
• Podręczniki
 [164793]
• Poradniki
 [480107]
• Religia
 [510956]
• Czasopisma
 [511]
• Sport
 [61267]
• Sztuka
 [243299]
• CD, DVD, Video
 [3411]
• Technologie
 [219640]
• Zdrowie
 [100984]
• Książkowe Klimaty
 [124]
• Zabawki
 [2281]
• Puzzle, gry
 [3363]
• Literatura w języku ukraińskim
 [258]
• Art. papiernicze i szkolne
 [8020]
Kategorie szczegółowe BISAC

Ruby Recipes: A Problem-Solution Approach

ISBN-13: 9781484224687 / Angielski / Miękka / 2016 / 226 str.

Malay Mandal
Ruby Recipes: A Problem-Solution Approach Mandal, Malay 9781484224687 Apress - książkaWidoczna okładka, to zdjęcie poglądowe, a rzeczywista szata graficzna może różnić się od prezentowanej.

Ruby Recipes: A Problem-Solution Approach

ISBN-13: 9781484224687 / Angielski / Miękka / 2016 / 226 str.

Malay Mandal
cena 112,68
(netto: 107,31 VAT:  5%)

Najniższa cena z 30 dni: 107,92
Termin realizacji zamówienia:
ok. 22 dni roboczych.

Darmowa dostawa!

Solve your Ruby programming problems that occur during your day-to-day scripting work. This book contains a varied selection of practical and interesting code recipes designed to make your coding life easier. Ruby Recipes includes solutions to problems in working with data, handling exceptions, writing blocks, and using regular expressions. This book provides ready scripts for both simple complex scripting tasks, which you can use readily or with only minor modifications. These scripts cover areas such as collections, classes and structures, functional programming, and log handling. With these handy recipes at your fingertips, you will be able to solve those niggling problems and become even more efficient.
What You Will Learn

  • Install and run Ruby
  • Read and write data
  • Write functions
  • Work with arrays, ranges, hashes, and iterators
  • Handle dates and time
  • Process XML as text
  • Master OOP concepts such as classes, objects, subclassing, and inheritance
  • Connect to databases

Who This Book Is For
Programmers new to Ruby, and web developers interested in knowing the foundations of the language.

Kategorie:
Informatyka, Bazy danych
Kategorie BISAC:
Computers > Programming - Object Oriented
Computers > Languages - General
Wydawca:
Apress
Język:
Angielski
ISBN-13:
9781484224687
Rok wydania:
2016
Ilość stron:
226
Waga:
3.93 kg
Wymiary:
23.5 x 15.5
Oprawa:
Miękka
Wolumenów:
01
Dodatkowe informacje:
Wydanie ilustrowane

Chapter 1 : A taste of Ruby

Chapter-goal : Brief discussion of Ruby installation, and gentle introduction to some very basic programs.

Pages : 11 (appox)

Some sub topics :

1.    Ruby installation

2.    Running a program from command prompt

3.    assignment to variable

4.    basic for loop

5.    interactive Ruby shell

 

Chapter 2 : Filing cabinet

Chapter-goal : Gentle introduction to file input output, and a few other Ruby features, along with some associated case studies.

Pages : 24 (appox)

Some sub topics :

1.    Reading input from console

2.    Command line arguments

3.    Reading from a file

4.    Writing to a file

5.    Processing line by line

6.    Basic exception handling

 

Chapter 3 : Elementary

Chapter-goal : Gentle introduction to some basic language elements in some detail, along with relevant examples / case studies

Pages : 25 (appox)

Some sub topics :

1.    Variables and operators

2.    Strings

3.    Control flow structures – if, while, for etc.

4.    Comment in a code

5.    Introduction to functions

6.    Exception handling in some detail


Chapter 4 : Collections

Chapter-goal : Gentle introduction to some of the main collection classes in some detail, along with relevant examples / case studies

Pages : 24 (appox)

Some sub topics :

1.    Arrays

2.    Ranges

3.    Hashes

4.    Iterators

5. Some related API functions usage


Chapter 5 : First flight

Chapter-goal : A lot of examples, case studies, with mostly materials learnt so far, with a few new feature introduction as necessary.

Pages : 18 (appox)

Some sub topics :

1.    Task 1: Get the total price

2.    Task 2: querying the employee file

3.    Task 3: Dividing files into subdirectories

4.    Task 4: Adding header comments

5.    Task 5: Balance from transactions



Chapter 6 :  Regular Expressions

Chapter-goal : A detailed coverage of working with regular expressions.

Pages : 42 (appox)

Some sub topics :

1.    Introduction to regulare expressions

2.    Character classes

3.    Quantifiers

4.    Anchors

5.    Backtracking 

6. Replacement


Chapter 7 :  Paraphernalia

Chapter-goal : Gentle introduction to certain ruby tricks and extra topics

Pages : 23 (appox)

Some sub topics :

1.    Handling date and time

2.    Multiple assignments

3.    Pre defined variables

4.    Predefined Constants

5. True, False and Nil

6.    Return from block


Chapter 8 : Cruising along

Chapter-goal : Some more tasks / case studies with the knowledge.

Pages : 28 (appox)

Some sub topics :

1.    Task 1: Remove block commented code

2.    Task 2: Create or Replace

3.    Task 3: Getting distinct table names from code

4.    processing XML as text


Chapter 9 : Classes and Structures

Chapter-goal : Gentle introduction to object oriented side of ruby, along with use of Struct

Pages : 14 (appox)

Some sub topics :

1.    Classes and objects

2.    Subclassing and inheritance

3.    working with Struct

4.    Modules


Chapter 10 : Functional programming facet of Ruby

Chapter-goal : Some introduction to functional programming. What Ruby offers towards that, along with some relevant case studies

Pages : 39 (appox)

Some sub topics :

1.    Functional Programming paradigm

2.    Lambdas and Closures

3.    Some use cases for functional programming

4.    Mimicking behaviour of map and flatMap


Chapter 11 : Applicability

Chapter-goal : Gentle introduction to few more tools, like database connectivity, and web services with some relevant examples.

Pages : 18 (appox)

Some sub topics :

1.    Database connectivity

2.    Web services with Ruby

3.    Multithreading


Chapter 12 : Data and log handling

Chapter-goal : Gentle introduction to some APIs for handling JSON and XML data. Parsing of common web server log for useful informations.

Pages : 23 (appox)

Some sub topics :

1.    XML handling

2.    JSON handling

3.    Log parsing

4.    Task : sorting time differences


A Master of Engineering (Mechanical Engineering) from IISc, Bangalore ('94), Malay is working in IT for the last 22 or so years. He worked across multiple geographical locations (India, Japan, Singapore, UK ..), across multiple technology stack and for quite a few well known organisations (Telstra, JP Morgan, Citigroup etc.). He quite often actively learns new things, and his creation (other than books) include Apps in Google Play, and some small wooden pieces of furniture at home.

Solve your Ruby programming problems that occur during your day-to-day scripting work. This book contains a varied selection of practical and interesting code recipes designed to make your coding life easier. Ruby Recipes includes solutions to problems in working with data, handling exceptions, writing blocks, and using regular expressions.

This book provides ready scripts for both simple complex scripting tasks, which you can use readily or with only minor modifications. These scripts cover areas such as collections, classes and structures, functional programming, and log handling. With these handy recipes at your fingertips, you will be able to solve those niggling problems and become even more efficient.

You will:

  • Install and run Ruby
  • Read and write data
  • Write functions
  • Work with arrays, ranges, hashes, and iterators
  • Handle dates and time
  • Process XML as text
  • Master OOP concepts such as classes, objects, subclassing, and inheritance
  • Connect to databases



Udostępnij

Facebook - konto krainaksiazek.pl



Opinie o Krainaksiazek.pl na Opineo.pl

Partner Mybenefit

Krainaksiazek.pl w programie rzetelna firma Krainaksiaze.pl - płatności przez paypal

Czytaj nas na:

Facebook - krainaksiazek.pl
  • książki na zamówienie
  • granty
  • książka na prezent
  • kontakt
  • pomoc
  • opinie
  • regulamin
  • polityka prywatności

Zobacz:

  • Księgarnia czeska

  • Wydawnictwo Książkowe Klimaty

1997-2026 DolnySlask.com Agencja Internetowa

© 1997-2022 krainaksiazek.pl
     
KONTAKT | REGULAMIN | POLITYKA PRYWATNOŚCI | USTAWIENIA PRYWATNOŚCI
Zobacz: Księgarnia Czeska | Wydawnictwo Książkowe Klimaty | Mapa strony | Lista autorów
KrainaKsiazek.PL - Księgarnia Internetowa
Polityka prywatnosci - link
Krainaksiazek.pl - płatnośc Przelewy24
Przechowalnia Przechowalnia