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
# [...] your github action | |
- name: Set up Google Cloud SDK | |
uses: google-github-actions/setup-gcloud@v1 | |
with: | |
project_id: ${{ secrets.GCP_PROJECT_ID }} | |
export_default_credentials: true | |
- name: Authenticate to GCP | |
env: | |
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} |
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
/* | |
* University of Brasilia - Brazil, UnB | |
* Software Engineering | |
* Created by Erick Giffoni in 2020 . | |
* Copyright © 2020 Erick Giffoni . All rights reserved. | |
*/ | |
#include <stdio.h> | |
#define tamanho 50000 |
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
/* | |
Fibonacci number | |
Code by Erick Giffoni - University of Brasilia, Brazil (UnB) | |
*/ | |
#include <iostream> | |
#include <vector> | |
int fib_naive(int n){ | |
if (n <=1) return n; |
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> | |
/* This program shows a specified number of Fibonacci's sequence, | |
out of the input from the user, which is that number's position. | |
*/ | |
// Code made by Erick Giffoni | |
// contact : [email protected] | |
// github : https://github.com/ErickGiffoni | |
// linkedin : https://www.linkedin.com/in/erick-giffoni-022565167/ | |
// Copyright © 2018 Erick Giffoni . All rights reserved. |