Skip to content

Instantly share code, notes, and snippets.

View cassianomaia's full-sized avatar

Cassiano Maia cassianomaia

View GitHub Profile
@cassianomaia
cassianomaia / test.dart
Created June 18, 2020 20:35
Dart playground
class Person {
String _name;
int _age;
int money;
Person(this._name, this._age, this.money);
Person.named({String name, int age = 25}) {
this._name = name;
this._age = age;

Keybase proof

I hereby claim:

  • I am cassianomaia on github.
  • I am catito (https://keybase.io/catito) on keybase.
  • I have a public key ASB9eeALq10CVbrU0aIjhITaiHRyyckCG7ZAktoCfdNmtwo

To claim this, I am signing this object:

@cassianomaia
cassianomaia / activity_futebol.xml
Created September 5, 2018 17:18
Arquivos xml realizados na aula passada do aplicativo churrascore xD
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".Futebol">
@cassianomaia
cassianomaia / teste.c
Created April 27, 2018 14:45
Syscall computer test
#include <unistd.h>
//#include <linux/linkage.h>
#include <linux/sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <string.h>
pid_t vetor[10];