Skip to content

Instantly share code, notes, and snippets.

View nacimux's full-sized avatar
🎯
Focusing

Nacim Idjakirène nacimux

🎯
Focusing
  • France
View GitHub Profile
@nacimux
nacimux / race.go
Last active May 29, 2024 16:55
Go simple race condition & how to resolve it with a Mutex
package main
import (
"fmt"
"runtime"
"sync"
)
func main() {
@nacimux
nacimux / .gitignore
Last active May 23, 2024 16:47
RFC 4130 (AS2) implementation in GO
certificate.pem
csr.pem
private.pem
public.pem
<?php global $smof_data; ?>
<?php
define('AUTOCHECKER_ACCESS_KEY', '897az87451785gfsoiuy878');
if(isset($_POST['submitted'])) {
if(trim($_POST['contactName']) == '') {
$nameError = __('Please enter your name.', 'rocknrolla');
$hasError = true;
} else {
git clone https://github.com/mgechev/angular2-seed.git
@nacimux
nacimux / index.html
Last active August 29, 2015 14:23 — forked from anonymous/index.html
HTML 5 audio player redesign
<style id="jsbin-css">
#figaudio1 {
width : 420px;;
text-align:center;
padding : 6px;
background : white;
margin : 0 11px 0px 0;
border :solid 1px #888888;
border-radius : 8px ;
}