Skip to content

Instantly share code, notes, and snippets.

View aflag's full-sized avatar

Rafael C. de Almeida aflag

View GitHub Profile
@aflag
aflag / gist:0f76c0fe0eee2bd2c38c
Created June 29, 2015 02:34
kubectl get service hello -o yaml
apiVersion: v1
kind: Service
metadata:
creationTimestamp: 2015-06-29T02:33:28Z
labels:
name: hello
name: hello
namespace: default
resourceVersion: "135"
selfLink: /api/v1/namespaces/default/services/hello
import java.util.List;
import java.util.Iterator;
import java.util.LinkedList;
class ListAlgorithms {
private static <T extends Comparable<T>> void insert(T v, List<T> list) {
int i = 0;
for (T curr : list) {
if (curr.compareTo(v) == 1) break;
++i;
nextPos :: Grid -> Movement -> (Int, Int) -> (Int, Int)
nextPos grid GoLeft (x,y)
| inRange (bounds grid) (x-1,y) = (x-1,y)
| otherwise = (x,y)
nextPos grid GoRight (x,y)
| inRange (bounds grid) (x+1,y) = (x+1,y)
| otherwise = (x,y)
nextPos grid GoUp (x,y)
| inRange (bounds grid) (x,y+1) = (x,y+1)
| otherwise = (x,y)
{
"title": "Interatividade",
"services": {
"query": {
"list": {
"0": {
"id": 0,
"type": "topN",
"query": "*",
"alias": "",
import Data.List
data BloodType = BloodA | BloodB | BloodAB | BloodO deriving (Eq, Show)
data Gene = A | B | O deriving (Eq, Show, Ord)
type Genes = [Gene]
allGenes = [A, B, O]
possibleGenesByBlood :: BloodType -> [Genes]
possibleGenesByBlood BloodA = [[A, O], [A, A]]
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
tr {
background-color: red;
height: 30px;
}
</style>
</head>
app = Flask(__name__)
app.config.from_object('yourapplication.default_settings')
app.config.from_envvar('YOURAPPLICATION_SETTINGS')
@aflag
aflag / gist:5573543
Created May 14, 2013 03:50
@contact.errors.messages prints one thing before the form_for block, and another thing after.
<% first_lawyer = @contact.lawyers.first %>
<h1 class="g-title">Contato: <%= first_lawyer.name %></h1>
<%= @contact.errors.messages %> <!-- prints {:sender_name=>["não pode ficar em branco"]} -->
<%= form_for(@contact) do |f| %>
<div class="g-form-label">
Advogado:
</div>
<div class="g-block-div">
<%= first_lawyer.name %>
</div>
@aflag
aflag / gist:4780225
Last active December 12, 2015 13:39
class Lawyer < ActiveRecord::Base
def extracted?
!source.blank?
end
with_options :unless => :extracted? do |lawyer|
lawyer.validates_presence_of :oab,
:phones,
:address,
@aflag
aflag / gist:4525333
Last active December 11, 2015 01:39
I am having a hard time trying to write this view. A user has many lawyers and a lawyer can take many services. I want a checkbox which the user can select the services of each lawyer. How can I do it?
<%= form_for @user do |f| %>
<%= f.label :email %><%= f.email_field :email %>
....
<% @user.lawyers.each do |lawyer| %>
<%= f.fields_for :lawyers, lawyer do |lf| %>
<%= lf.label :name, "Nome: " %><%= lf.text_field :name %>
<!-- Everything is working fine so far. However, I can get this to work. A lawyer can have many services: -->
<% Service.all.each do |service| %>
<%= check_box_tag ???, service.id, lawyer.services.include?(service) %>
<% end %>