#GIT
git config --global user.name "Alex Gonzalez"
git config --global user.email [email protected]
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
| #!/bin/sh | |
| if [ -t 0 ]; then | |
| echo nothing in STDIN | |
| else | |
| while read LINE; do | |
| echo ${LINE} | |
| done | |
| exit 0 |
#GIT
git config --global user.name "Alex Gonzalez"
git config --global user.email [email protected]
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
| using System; | |
| using System.Reflection; | |
| class moreInfoAttribute : Attribute | |
| { | |
| public string valor { get; set; } | |
| } |
| Private Shared Function UniqueRandomNumbers(NumAleatories As Integer, elements As Integer) As List(Of Integer) | |
| Dim aleatorios As New List(Of Integer) | |
| If elements > 0 Then | |
| Dim temp As List(Of Integer) = Enumerable.Range(0, elements) | |
| If NumAleatories > elements Then | |
| aleatorios = temp.OrderBy(Function(a) Guid.NewGuid()) | |
| Else | |
| Dim r As New Random(DateTime.Now.Millisecond) |
| desc "extracting data for fixtures" | |
| task :extract_fixtures => :environment do | |
| sql = "SELECT * FROM %s" | |
| skip_tables = ["schema_info","schema_migrations"] | |
| ActiveRecord::Base.establish_connection | |
| (ActiveRecord::Base.connection.tables - skip_tables).each do |table_name| | |
| i = "000" | |
| File.open(Rails.root.join('test','fixtures',"#{table_name}.yml"), 'w' ) do |file| | |
| data = ActiveRecord::Base.connection.select_all(sql % table_name) | |
| file.write data.inject({}) { |hash, record| |
| #!/usr/bin/env ruby | |
| require 'fileutils' | |
| require 'right_aws' | |
| AWS_ACCESS_KEY_ID = '...' | |
| AWS_SECRET_ACCESS_KEY = '...' | |
| BUCKET = 'jujuego' | |
| DOWNLOAD_DIR = '../files' | |
| BUCKET_NAME = 'jujuego' |
| #!/usr/bin/env ruby | |
| require 'fileutils' | |
| require 'aws/s3' | |
| AWS_ACCESS_KEY_ID = '...' | |
| AWS_SECRET_ACCESS_KEY = '...' | |
| DOWNLOAD_DIR = 'files' | |
| cont = true |