Skip to content

Instantly share code, notes, and snippets.

View irunatbullets's full-sized avatar

irunatbullets irunatbullets

  • Toulouse, France
View GitHub Profile
This file has been truncated, but you can view the full file.
[19:48:34] [main/INFO]: Loading for game Minecraft 1.16.3
[19:48:34] [ForkJoinPool-1-worker-7/WARN]: The mod "cardinal-components-base" contains invalid entries in its mod json:
- Unsupported root entry "side" at line 8 column 11
[19:48:34] [ForkJoinPool-1-worker-3/WARN]: The mod "cardinal-components-entity" contains invalid entries in its mod json:
- Unsupported root entry "side" at line 8 column 11
[19:48:34] [ForkJoinPool-1-worker-5/WARN]: The mod "autoconfig1u" contains invalid entries in its mod json:
- Unsupported root entry "$schema" at line 2 column 14
[19:48:34] [ForkJoinPool-1-worker-7/WARN]: The mod "autoconfig1u" contains invalid entries in its mod json:
- Unsupported root entry "$schema" at line 2 column 14
[19:48:34] [ForkJoinPool-1-worker-4/WARN]: The mod "autoconfig1u" contains invalid entries in its mod json:
@irunatbullets
irunatbullets / gist:2b2acad248d9da66d64a93261d1f5a1e
Last active November 17, 2020 00:46
latest.log recursive debug
[13:30:01] [main/INFO]: Loading for game Minecraft 1.16.3
[13:30:01] [main/INFO]: Fabric is preparing JARs on first launch, this may take a few seconds...
[13:30:05] [ForkJoinPool-1-worker-1/WARN]: The mod "cardinal-components-base" contains invalid entries in its mod json:
- Unsupported root entry "side" at line 8 column 11
[13:30:05] [ForkJoinPool-1-worker-4/WARN]: The mod "cardinal-components-entity" contains invalid entries in its mod json:
- Unsupported root entry "side" at line 8 column 11
[13:30:05] [ForkJoinPool-1-worker-1/WARN]: The mod "autoconfig1u" contains invalid entries in its mod json:
- Unsupported root entry "$schema" at line 2 column 14
[13:30:05] [ForkJoinPool-1-worker-2/WARN]: The mod "libcd" contains invalid entries in its mod json:
- Unsupported root entry "licence" at line 9 column 12
@irunatbullets
irunatbullets / package.json
Created August 2, 2017 05:08
create-react-app package.json with sass and normalise
{
"name": "Project Name",
"version": "0.1.0",
"private": true,
"dependencies": {
"node-sass-chokidar": "0.0.3",
"normalize-scss": "^7.0.0",
"npm-run-all": "^4.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
@irunatbullets
irunatbullets / prompt_powerline_setup
Created November 11, 2016 06:31
Prezto Powerline setup for Windows (changed black to magenta on lines 172-174)
#
# A ZSH theme based on a combination of the skwp prezto theme and the robl ohmyzsh theme.
# * RVM info shown on the right
# * Git branch info on the left
# * Single line prompt
# * Time since last commit on the left
# * Time in place of user@hostname
#
# Authors:
# David Rice <me@davidjrice.co.uk>
@irunatbullets
irunatbullets / Webstorm Git Bash terminal setting for Windows
Last active August 19, 2016 00:53
Add this to Webstorm's Settings > Tools > Terminal > Shell path:
"C:\Program Files\Git\git-cmd.exe" --no-cd --command=usr/bin/bash.exe -l -i
@irunatbullets
irunatbullets / _hg
Last active August 29, 2015 14:22 — forked from yuitowest/_hg
#compdef hg
# Zsh completion script for mercurial. Rename this file to _hg and copy
# it into your zsh function path `echo $FPATH` (It could be /usr/share/zsh/site-functions/,
# /usr/share/zsh/5.0.5/functions/, or /usr/local/Cellar/zsh/5.0.7/share/zsh/functions/)
#
# If you do not want to install it globally, you can copy it somewhere
# else and add that directory to $fpath. This must be done before
# compinit is called. If the file is copied to ~/.zsh.d, your ~/.zshrc
# file could look like this:
@irunatbullets
irunatbullets / _magic-border.scss
Created March 1, 2015 05:05
A mixin for adding borders that don't effect the box model, meaning that if a designer asks for 10px padding around a box and there is also a 1px border, you don't have to make your padding 9px to compensate. It helps you to avoid magic numbers.
@mixin magic-border($widths, $color, $extra-box-shadow: false) {
$shadow: null;
@if length($widths) == 1 {
$shadow: 'inset 0 0 0 #{$widths} #{$color}';
}
@if length($widths) == 2 {
$shadow: 'inset 0 #{nth($widths,1)} 0 0 #{$color}, inset -#{nth($widths,2)} 0 0 0 #{$color}, inset 0 -#{nth($widths,1)} 0 0 #{$color}, inset #{nth($widths,2)} 0 0 0 #{$color}';
@irunatbullets
irunatbullets / hamburger.html
Last active August 29, 2015 14:03
Google Material Hamburger Button
<div class="hamburger">
<div></div>
<div></div>
<div></div>
</div>
@irunatbullets
irunatbullets / _clearfix.scss
Created May 30, 2014 02:12
Extend only clearfix
// Clearfix - extend only
// ============================================================================
%clearfix {
&:before,
&:after {
content: " ";
display: table;
}
&:after {
@irunatbullets
irunatbullets / _super-font-face.scss
Last active August 29, 2015 14:00
Compass font-face mixin wrapper.
// Super Font Face Mixin
// ============================================================================
//
// If you have a standard set of fonts (i.e. woff, ttf, svg, eot), instead of
// having to list every font file with the Compass font mixin, just use this
// wrapper.
//
// Usage examples:
// @include super-font-face('Museo Sans', 'MuseoSans_500-webfont');
// @include super-font-face('Museo Sans', 'MuseoSans_700-webfont', bold);