This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. | |
| /home/sarkis/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb | |
| checking for pg_config... no | |
| No pg_config... trying anyway. If building fails, please try again with | |
| --with-pg-config=/path/to/pg_config | |
| checking for libpq-fe.h... no | |
| Can't find the 'libpq-fe.h header | |
| *** extconf.rb failed *** | |
| Could not create Makefile due to some reason, probably lack of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| gem 'rails', '3.2.8' | |
| gem 'pg' | |
| group :assets do | |
| gem 'sass-rails', '~> 3.2.3' | |
| gem 'coffee-rails', '~> 3.2.1' | |
| gem 'uglifier', '>= 1.0.3' | |
| gem 'twitter-bootstrap-rails', git: 'http://github.com/seyhunak/twitter-bootstrap-rails.git' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "$HOME/.zsh/zshrc" | |
| source "$HOME/.zsh/zshrc" | |
| PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Template for console application | |
| .586 | |
| .MODEL flat, stdcall | |
| OPTION CASEMAP:NONE | |
| Include kernel32.inc | |
| Include masm32.inc | |
| IncludeLib kernel32.lib | |
| IncludeLib masm32.lib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Template for console application | |
| .586 | |
| .MODEL flat, stdcall | |
| OPTION CASEMAP:NONE | |
| Include kernel32.inc | |
| Include masm32.inc | |
| IncludeLib kernel32.lib | |
| IncludeLib masm32.lib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "stdafx.h" | |
| #include "lexem.h" | |
| #include <iostream> | |
| #include <locale.h> | |
| #include <string.h> | |
| using namespace std; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef lexem_h | |
| #define lexem_h | |
| #include <iostream> | |
| using namespace std; | |
| // ---------- | |
| char* del (char *str) | |
| { | |
| int i,j,n; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://qastuffs.blogspot.com/2010/11/installing-gem-bundler-in-ubuntu-1004.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Template for console application | |
| .586 | |
| .MODEL flat , c | |
| OPTION CASEMAP:NONE | |
| .CONST | |
| MsgExit DB 13,10,"Press Enter to Exit",0AH,0DH,0 | |
| ;Задание | |
| ;Вариант 11. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Laba5.cpp : Defines the entry point for the console application. | |
| // | |
| #include "stdafx.h" | |
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <iostream> | |
| using namespace std; | |
| #include <locale.h> | |