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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<%= error_messages_for 'type' %> | |
<div class="box"> | |
<p> | |
<%= f.text_field :descrizione, :label=>l(:label_descrizione), :required => true-%> | |
</p> | |
<p> | |
<%= f.text_field 'figlia_di', :label=>l(:label_parent) -%> | |
</p> | |
<p> |
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
$ brew install -v glib | |
==> Build Environment | |
CC: /usr/bin/cc => /usr/bin/gcc-4.2 | |
CXX: /usr/bin/c++ => /usr/bin/c++-4.2 | |
LD: /usr/bin/cc => /usr/bin/gcc-4.2 | |
CFLAGS: -O3 -march=core2 -msse4.1 -w -pipe | |
CXXFLAGS: -O3 -march=core2 -msse4.1 -w -pipe | |
CPPFLAGS: -I/usr/local/Cellar/gettext/0.17/include | |
LDFLAGS: -L/usr/local/Cellar/gettext/0.17/lib | |
MAKEFLAGS: -j2 |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by glib configure 2.24.2, which was | |
generated by GNU Autoconf 2.65. Invocation command line was | |
$ ./configure --disable-dependency-tracking --disable-rebuilds --prefix=/usr/local/Cellar/glib/2.24.2 --with-libiconv=gnu --disable-debug | |
## --------- ## | |
## Platform. ## |
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
require 'net/http' | |
require 'net/https' | |
http = Net::HTTP.new('profil.wp.pl', 443) | |
http.use_ssl = true | |
path = '/login.html' | |
# GET request -> so the host can set his cookies | |
resp, data = http.get(path, nil) |