Original revision: 1.26
Paul Armstrong
Too many more to mention
Parsed to Markdown by Wesley Rocha. See source.
#include <iostream> | |
#include <vector> | |
using namespace std; | |
struct Soldier { int id, strength; }; | |
int main() { | |
int n; | |
cin >> n; |
Original revision: 1.26
Paul Armstrong
Too many more to mention
Parsed to Markdown by Wesley Rocha. See source.
export ZSH="/home/$(whoami)/.oh-my-zsh" | |
ZSH_THEME="spaceship" | |
plugins=( | |
git | |
vi-mode | |
thefuck | |
) |
#!/bin/bash | |
# exit when any command fails | |
set -e | |
rm public/{*.png,manifest.json,robots.txt} | |
cat > public/index.html << EOF | |
<!DOCTYPE html> | |
<html lang="en"> |
Format a list of Points of Django to able visualization on: https://mobisoftinfotech.com/tools/plot-multiple-points-on-map/
from django.contrib.gis.geos import Point
sample_lat_lng = [
<head> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<h1> | |
<div class="expander"> | |
<span>w</span><span>esley </span> | |
<span>d</span><span>a </span> | |
<span>s</span><span>ilva </span> | |
<span>rocha</span> |
Every timestamp is in GMT -4.
At 2021-10-15 22:04:50
I've successfully purchased a one-year subscription plan on https://pinboard.in, which costed $22 USD
(R$ 132,68 BRL
in my currency).
Pinboard claims that there is a seven-day trial period after signup which is FULLY REFUNDABLE. This can be proven in the web archive snapshots from Oct 8th:
#include <iostream> | |
#include <stdlib.h> | |
#include <time.h> | |
#include <windows.h> | |
using namespace std; | |
int game_mode, p1, p2, cpu = 0; | |
char opcao, nome1[50], nome2[50], ttt[3][3] = {{'_','_','_'},{'_','_','_'},{' ',' ',' '}}; // ttt = tic tac toe | |
bool game_over, restart = true, invalid = false; |