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
#include <stdio.h> | |
#include <stdlib.h> | |
#define TAMANHO 5 | |
/* | |
11. Crie um programa que contenha um array contendo 5 elementos inteiros. Leia esse array | |
do teclado e imprima o endereço das posições contendo valores pares. | |
*/ |
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
/** | |
* @abstract: Exemplo usando media | |
* @name: @jeffotoni | |
* | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
int main () { |
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
/** | |
* @abstract: brincando com strings | |
* @jeffotoni | |
* @exemplo strings | |
* @date: 2016 | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> |
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
/** | |
* @abstract: Brincando com continue | |
* @jeffotoni | |
* @exemplo triangulo de pascal | |
* @date: 2016 | |
*/ | |
#include <stdio.h> | |
int main(){ |
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
<?php | |
/** | |
* @jeffotoni | |
* aws sdk download | |
* baixar o sdk pelo composer | |
* install composer curl -sS https://getcomposer.org/installer | php | |
* gerar o arquivo composer.json | |
* "require": {"aws/aws-sdk-php": "2.*"} | |
* composer update | |
*/ |
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
/** | |
..######......#######.....##......##....######## | |
.##....##....##.....##....##..##..##....##...... | |
.##.................##....##..##..##....##...... | |
..######......#######.....##..##..##....######.. | |
.......##...........##....##..##..##....##...... | |
.##....##....##.....##....##..##..##....##...... | |
..######......#######......###..###.....##...... | |
* | |
* S3WF Framework |
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
/** | |
..######......#######.....##......##....######## | |
.##....##....##.....##....##..##..##....##...... | |
.##.................##....##..##..##....##...... | |
..######......#######.....##..##..##....######.. | |
.......##...........##....##..##..##....##...... | |
.##....##....##.....##....##..##..##....##...... | |
..######......#######......###..###.....##...... | |
* | |
* S3WF Framework - golang |
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
#!/bin/bash | |
# @autor jeffotoni | |
# @date 25/2017 | |
while : | |
do | |
sleep 1 | |
for f in *; do | |
echo "$f" |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"github.com/gorilla/mux" | |
) |
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
/** @autor jeffotoni */ | |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"github.com/gorilla/mux" | |
) |
OlderNewer