Skip to content

Instantly share code, notes, and snippets.

View nvigneux's full-sized avatar
🚀
Developer @zolweb

Nicolas Vigneux nvigneux

🚀
Developer @zolweb
  • Lyon, France
View GitHub Profile
@nvigneux
nvigneux / helldivers-stratagems-data.js
Last active March 28, 2024 03:31
Helldivers 2 - JSON Stratagems data
const CATEGORIES = [
{
id: '3958dc9e-712f-4377-85e9-fec4b6a6442a',
name: 'Patriotic Administration Center',
},
{
id: '3958dc9e-742f-4377-85e9-fec4b6a6442a',
name: 'Orbital Cannons',
},
{
[
{
"year": "1983",
"name": "Kill 'Em All (Remastered)",
"artist": "Metallica",
"songs": [
{
"number": "1",
"name": "Hit The Lights",
"duration": "4:15"
@nvigneux
nvigneux / mixins-templating.scss
Last active May 4, 2017 17:49
mixins theming container BEM
//theming sass https://medium.com/@dmitriy.borodiy/easy-color-theming-with-scss-bc38fd5734d1
// MIXINS
@mixin themify($themes: $themes) {
@each $theme, $map in $themes {
.container--#{$theme} & {
$theme-map: () !global;
@each $key, $submap in $map {
$value: map-get(map-get($themes, $theme), '#{$key}');
$theme-map: map-merge($theme-map, ($key: $value)) !global;