This file contains 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 is an example Makefile for quick package creation | |
# | |
# It uses FPM [1] to generate simple packages. | |
# - If you need more features or a greater quality package, use debian | |
# standard tools for packaging. | |
# - Do not use checkinstall. Use FPM instead. | |
# | |
# [1] (https://github.com/jordansissel/fpm/wiki) | |
# IMPORTANT: |
This file contains 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
import XMonad.Layout.Tabbed | |
import XMonad.Layout.ToggleLayouts | |
import XMonad.Hooks.ManageHelpers | |
-- import XMonad.Layout.WindowArranger | |
import XMonad.Util.EZConfig (additionalKeys) | |
myWorkspaces = ["1:im", "2:shell", "3:web", "4", "5", | |
"6", "7", "8", "9"] | |
workspaceLayouts = |
This file contains 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
--- | |
- hosts: windows | |
vars: | |
ansible_site_path: "c:\\inetpub\\wwwroot\\ansibletest" | |
staging_path: "c:\\deploy" | |
ansible_test_staging_path: "{{ staging_path }}\\ansible-test-site-{{ ansible_date_time.year }}{{ ansible_date_time.month }}{{ ansible_date_time.day }}" | |
tasks: | |
- name: install-iis | |
win_feature: | |
name: "Web-Server" |
This file contains 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
Desenvolvedor de Infraestrutura | |
(essa é uma área de infraestrutura, mas é preciso reforçar que estamos procurando avidamente também perfis mais focados em | |
desenvolvimento que queiram se encaixar dentro dela) | |
Estamos buscando um profissional que consiga trabalhar em um time multidisciplinar, que tenha sólidos conhecimentos de | |
programação, bons fundamentos de sistemas operacionais e redes, experiência com tecnologias de automação, e facilidade para | |
trabalhar com metodologias ágeis dentro de uma cultura DevOps. Um perfil curioso e autodidata, com interesse em grandes | |
desafios técnicos. |
This file contains 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
Cloud Engineer | |
Profissional sênior com experiência com Openstack, para trabalhar em projeto de construção de uma nuvem privada em empresa do mercado financeiro. | |
Necessidade de relocação para o Rio de Janeiro no início do projeto, com alternativas de trabalho em São Paulo ou remoto no futuro. | |
Estamos buscando profissionais com integridade, inteligência e energia, para trabalhar em uma equipe que tem por objetivo transformar e evoluir continuamente a empresa, tanto tecnologicamente quanto culturalmente, calcando-se em um mix de: tecnologias de ponta open source (e algumas proprietárias também), metodologias ágeis, cultura e práticas DevOps. | |
Alguns diferenciais: | |
- Experiência ou conhecimento com distribuições ViO (VMWare Integrated Openstack) e/ou RHOSP (Red Hat Openstack Platform) |
This file contains 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
Desenvolvedor de infraestrutura / IT Automation Engineer | |
Profissionais em nível júnior e pleno para trabalhar em projeto de transformação e migração de um datacenter para um novo modelo baseado totalmente em infraestrutura como código, automação e outras práticas DevOps. | |
Necessidade de relocação para o Rio de Janeiro no início do projeto, com alternativas de trabalho em São Paulo ou remoto no futuro. | |
Estamos buscando profissionais com integridade, inteligência e energia, para trabalhar em uma equipe que tem por objetivo transformar e evoluir continuamente a empresa, tanto tecnologicamente quanto culturalmente, calcando-se em um mix de: tecnologias de ponta open source (e algumas proprietárias também), metodologias ágeis, cultura e práticas DevOps. | |
Experiências e conhecimentos buscados: |
This file contains 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
provider "github" { | |
organization = "my-organization" | |
} | |
# Add a user to the organization | |
resource "github_membership" "dgmorales" { | |
username = "dgmorales" | |
role = "member" # or "admin" for an org owner | |
} | |
resource "github_team" "my-team" { |
This file contains 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
# modules/user-map/main.tf | |
locals { | |
user_map = { | |
"[email protected]" = "someguy" | |
"[email protected]" = "strangenick89" | |
} | |
} | |
# modules/user-map/output.tf | |
output "map" { |
This file contains 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
# modules/org-member/variable.tf | |
variable "email" { | |
description = "email - (Required) The email address of the user" | |
} | |
variable "role" { | |
description = "role - (Optional) The user role in the org" | |
default = "member" | |
} |
This file contains 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
module "otherguy__stone_com_br" { | |
source = "../modules/org-member" | |
email = "[email protected]" | |
} |
OlderNewer