I hereby claim:
- I am david-legrand on github.
- I am davlgd (https://keybase.io/davlgd) on keybase.
- I have a public key whose fingerprint is C508 D847 4655 467F 2E58 D86A 3435 4A80 ABE9 28E6
To claim this, I am signing this object:
#! /bin/bash | |
### Blender compile & bench for Ubuntu | |
### Author : LEGRAND David - PC INpact | |
### | |
### [email protected] | |
### http://www.pcinpact.com | |
### | |
### test.blend is needed for benchmark | |
### http://www.eofw.org/bench/ |
# -*- coding: utf-8 -*- | |
# Copyright (c) 2012 LEGRAND David <[email protected]> | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# This program is distributed in the hope that it will be useful, |
Voila, si tu veux blogguer depuis Github, c'est possible avec un simple Gist | |
* Exemple de puce ;) | |
Un lien vers le meilleur site du monde : [PCINpact](http://www.pcinpact.com) |
// On check qu'un onglet est mis à jour et que la procédure est terminée | |
chrome.tabs.onUpdated.addListener(function(tab_id, tab_infos, tab) { | |
if (tab_infos.status == "complete") | |
{ | |
// On récupère les infos utiles | |
var url = tab.url; | |
var count = getFoundAppsCount(tab_id); | |
var matches = url.match(/^https?\:\/\/([^\/?#]+)(?:[\/?#]|$)/i); | |
var domain = matches && matches[1]; | |
I hereby claim:
To claim this, I am signing this object:
getGnuPGed = (event) -> | |
if event.type is ('custom:gpg-full-encrypt' or 'custom:gpg-full-decrypt' or 'custom:gpg-full-sign') | |
encEditor = atom.workspace.getActiveTextEditor() | |
encEditor.moveToTop() | |
encEditor.selectAll() | |
setTimeout ( -> encEditor.copySelectedText()) | |
, 100 | |
atom.commands.add 'atom-text-editor', 'custom:gpg-full-encrypt', -> | |
editor = atom.workspace.getActiveTextEditor() |
cd "$(TargetDir)" | |
powershell.exe -ExecutionPolicy Unrestricted -f "Zip Hash and Sign.ps1" |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace HelloWorld | |
{ | |
class Program | |
{ |
string textToShow = "Hello, World !"; | |
Console.Write(textToShow); | |
Console.Read(); |
using System; | |
namespace HelloWorld | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.ForegroundColor = ConsoleColor.Green; |