I hereby claim:
- I am zlalanne on github.
- I am zlalanne (https://keybase.io/zlalanne) on keybase.
- I have a public key ASBg0d_wurlf9zLV2WNiEFWuV7jpumqsr32LV2czBctHAwo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
""" | |
Usage: | |
dev_installccs [OPTIONS] <ccs_version> | |
dev_installccs (--help|-h) | |
dev_installccs (--version|-v) | |
Options: | |
""" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# | |
# Install ansible and clone dotfiles. Ready to install machine | |
sudo add-apt-repository ppa:ansible/ansible | |
sudo apt-get update | |
sudo apt-get install git ansible python-pycurl | |
git clone https://github.com/zlalanne/dotfiles ~/.dotfiles |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
typedef struct card { | |
unsigned int value; | |
struct card *next; | |
} Card_t; | |
static int AllocateCards(unsigned int numCards, Card_t **deckHead, Card_t **deckTail) { |
[Desktop Entry] | |
Version=1.0 | |
Encoding=UTF-8 | |
Name=Energia | |
GenericName=Energia | |
Comment=Rapid prototyping softare for TI MCUs | |
Type=Application | |
Exec=/opt/energia/energia | |
Icon=/opt/energia/energia_icon.png | |
Categories=Development |
[Desktop Entry] | |
Version=1.0 | |
Encoding=UTF-8 | |
Name=Fritzing | |
GenericName=Fritzing | |
Comment=Interactive electronics designing software | |
Type=Application | |
Exec=/opt/fritzing/Fritzing | |
Icon=/opt/fritzing/fritzing_icon.png | |
Categories=Development |
values = ["value3", "value2", "value"] | |
length = len(values) | |
for ind, item in enumerate(values): | |
if ind + 1 != length: | |
if list[ind + 1] == "value": | |
print("Next one is the value") |
REM Utilities | |
cinst 7zip | |
cinst vlc | |
cinst adobereader | |
cinst ccleaner | |
cinst filezilla | |
cinst dropbox | |
cinst virtualbox | |
cinst ChocolateyGUI | |
cinst windirstat |
foreach($arg in $args) | |
{ | |
Get-Command $arg | Select-Object -ExpandProperty Definition | |
} |