This chart is currently released as an alpha quality version. We encourage you to test it but please, do not put it in production. Please No.
This file contains 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
configuration: | |
provider: aws | |
backupStorageLocation: | |
name: default | |
bucket: kubernetes-backup | |
config: | |
region: de | |
s3ForcePathStyle: true | |
s3Url: https://s3.de.cloud.ovh.net | |
volumeSnapshotLocation: |
This file contains 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
# -*- coding: utf-8 -*- | |
# Located in ~/.FreeCAD/Macro/export.FCMacro | |
import os | |
import FreeCAD | |
import Mesh | |
import MeshPart | |
import PartDesign |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am naps on github. | |
* I am naps (https://keybase.io/naps) on keybase. | |
* I have a public key ASC0Nw6T6dwaa59iL6zg5lAv4IK63NFGmispSYuW3xT2lgo | |
To claim this, I am signing this object: |
This file contains 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 | |
# | |
# Create and spawn a new virtual machine with Debian Squeeze | |
# | |
# | |
# Configuration: | |
DEFAULT_STORAGE="storage" | |
DEFAULT_BRIDGE="internet" |
This file contains 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
w='on the wall' | |
b=lambda x:'%d bottle%s of beer'%(x,'s'*(x>1)) | |
v,p,n=',.\n' | |
def z(a='Take one down and pass it around',o=1):print b(i),w+v,b(i)+p+n,a+v,b((i-o)%100),w+p+n | |
i=99 | |
while i>1:z();i-=1 | |
z('Go to the store and buy some more',2) |
This file contains 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
#!/usr/bin/env python | |
# coding=utf8 | |
import subprocess | |
from graphit.client import GraphItAgent | |
# Parameters : | |
mountpoint = '/mnt/data' |
This file contains 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
#!/usr/bin/env python | |
#coding=utf8 | |
''' | |
Lala | |
''' | |
class State(object): | |
''' Représente un état de l'automate. ''' |
This file contains 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
#!/usr/bin/env python | |
#coding=utf8 | |
from automatelib import State, Transition, Automaton, EpsilonTransition | |
if __name__ == '__main__': | |
# Automate de test acceptant l'alphabet {a, b, c} et dont les mots | |
# commencent et finissent forcément par a. | |
#~ s1 = State('1') |
This file contains 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
Const reading = 1 | |
Const writing = 2 | |
set wmi_service = getobject("winmgmts:" & "{impersonationLevel=impersonate}!\\"& strComputer &"\root\cimv2") | |
set processes = wmi_service.execquery("select * from Win32_Process") | |
NewerOlder