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
[global_config] | |
window_state = maximise | |
handle_size = 0 | |
borderless = True | |
[keybindings] | |
[profiles] | |
[[default]] | |
use_system_font = False | |
login_shell = True | |
palette = "#000000000000:#CCCC00000000:#4E4E9A9A0606:#C4C4A0A00000:#34346565A4A4:#757550507B7B:#060698209A9A:#D3D3D7D7CFCF:#555557575353:#EFEF29292929:#8A8AE2E23434:#FCFCE9E94F4F:#72729F9FCFCF:#ADAD7F7FA8A8:#3434E2E2E2E2:#EEEEEEEEECEC" |
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
Software Engineering: Creating upper layers of software, then moving the bugs from the lower layers to the newly created layers. Repeat until there are no bugs or you die. |
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
;;Sets transparency of the background | |
;;(set-frame-parameter (selected-frame) 'alpha '(<active> [<inactive>])) | |
;; (set-frame-parameter (selected-frame) 'alpha '(60 20)) | |
(add-to-list 'default-frame-alist '(alpha 60 20)) | |
(eval-when-compile (require 'cl)) | |
(defun toggle-transparency () | |
(interactive) | |
(if (/= | |
(cadr (find 'alpha (frame-parameters nil) :key #'car)) |
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
CSers Gracias por toda la ayuda y llamadas que me han hecho y sugerencias sobre como vender o alquilar el apt. Como muchos me han estado prguntando, les envío datos sobre el apt: | |
Apartamento en la Unidad Residencial Guadalajara (Apt. 604, Bl. 2), 136 m2, 3 alcobas + alcoba de servicio, 2 baños, sala, sala de estar, comedor, cocina integral, parqueadero cubierto, salón social, juegos y cancha para niños, parque arborizado alrededor de toda la unidad, ascensor, portería 24 hrs, localizado en la "Milla de Oro", al frente de San Fernando Plaza sobre la Avenida El Poblado, cerca del Parque de El Poblado, del Parque Lleras ("Zona Rosa"), y de los Centros Comerciales Oviedo y Santa Fé. | |
Venta: $ 210.000.000 | |
Arriendo: $ 1.200.000 | |
Informes: Albert | |
cel: 312 861 8730 | |
email o msn: [email protected] |
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
# == Schema Information | |
# | |
# Table name: turk_qualification_types | |
# | |
# id :integer not null, primary key | |
# QualificationTypeId :string(255) | |
# Name :string(255) must be unique | |
# Description :text <= 2000 characters | |
# Keywords :text <=1000 characters- comma separated | |
# RetryDelayInSecond :integer non-negative |
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
class CreateTurkQualificationTypes < ActiveRecord::Migration | |
def self.up | |
create_table :turk_qualification_types do |t| | |
t.string :QualificationTypeId | |
t.string :Name | |
t.text :Description | |
t.text :Keywords | |
t.integer :RetryDelayInSecond | |
t.string :QualificationTypeStatus | |
t.string :Test |
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
Este es el mensaje: | |
Estoy buscando alguien que quiera compartir mi casa, tengo 3 habitaciones disponibles en una casa cerca al estadio. Soy un gringo que quiere vivir en Medellin por un buen tiempo y compartir la casa con gente que tenga mis mismos intereses de ayudar el planeta y/o que sea un emprendedor. | |
Semiamueblado. 4 baños, patio trasero muy privado y terrazas. | |
Puede ser corto (por lo menos un mes) o a largo plazo. | |
Hay 6 habitaciones de las cuales solo una tiene baño privado, pero en total son 4 baños. | |
Costo va de 350 mil a 400 mil. | |
---------- |
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
Feature: admin log in in the system | |
As a admin | |
I want to login with my credentials | |
So that I can navigate to the dashboard page | |
Scenario: successful admin login | |
Given I have a valid account | |
And I am on the login page | |
Then I should see "Log In" | |
When I login |
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
def account | |
@account ||= Factory.build(:account) | |
end | |
Given /^I have a valid account$/ do | |
account | |
end | |
Then /^I should visit the login page$/ do | |
visit path_to("the homepage") |
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
cucumber features/admin_log_in.feature -b | |
Using the default profile... | |
config.gem: Unpacked gem right_http_connection-1.2.4 in vendor/gems has no specification file. Run 'rake gems:refresh_specs' to fix this. | |
.>> Thin web server (v1.2.7 codename No Hup) | |
>> Maximum connections set to 1024 | |
>> Listening on 0.0.0.0:9887, CTRL+C to stop | |
Connecting to [email protected] and sending 9901->3000 | |
You can view your tunneled connection at http://web1.tunnlr.com:9901/ | |
.... |