visit "/projects"
visit post_comments_path(post)
click_link "id-of-link"
click_link "Link Text"
Download the .gz and .sha256 files from the official releases from official github repo (latest release normally) https://github.com/DarthSim/overmind/releases | |
Either use web ui and right-click these two files or download directly | |
cd ~/Download | |
mkdir overmind && cd overmind | |
wget https://github.com/DarthSim/overmind/releases/download/v2.4.0/overmind-v2.4.0-linux-amd64.gz | |
wget https://github.com/DarthSim/overmind/releases/download/v2.4.0/overmind-v2.4.0-linux-amd64.gz.sha256sum | |
# now make sure the sha256 checks out |
// Mask for phone number | |
let phone_number = ''; | |
let exec_function = ''; | |
window.mask = function mask(o, f) { | |
phone_number = o | |
exec_function = f | |
setTimeout("execmask()", 1) | |
} |
{ | |
"window.zoomLevel": 0, | |
"workbench.fontAliasing": "antialiased", | |
"workbench.sideBar.location": "right", | |
"files.autoSave": "onFocusChange", | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": false, | |
"ruby.lint": { | |
"rubocop": true, | |
"fasterer": true |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <conio.h> | |
#include <string.h> | |
#include <locale.h> | |
typedef struct { //struct para armazenar clientes no cadastro | |
char nome[30]; | |
int rg; |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <conio.h> | |
#include <string.h> | |
#include <locale.h> | |
typedef struct { //struct para armazenar clientes no cadastro | |
char nome[30]; | |
int rg; |