Skip to content

Instantly share code, notes, and snippets.

View qaraluch's full-sized avatar
👩‍💻
format c:

Ej.Gee qaraluch

👩‍💻
format c:
View GitHub Profile
@qaraluch
qaraluch / 20-intel.conf
Last active April 2, 2020 17:14
arch-linux-graphic-card - screen tearing on NUC
Section "Device"
Identifier "Device0"
Driver "intel"
VendorName "INTEL Corporation"
Option "TripleBuffer" "true"
Option "TearFree" "true"
EndSection
gistup

2018-12-07_102108 | @WSL-linux-installation-gist | 101

Update: 2019-10-04 - intallation on t-flex comp (WSL 2)

1. Download:

See: Manual download

2. Installation:

@qaraluch
qaraluch / index.js
Created January 9, 2018 06:52 — forked from zkat/index.js
npx is cool
#!/usr/bin/env node
console.log('yay gist')
@qaraluch
qaraluch / gitcreate.sh
Created October 11, 2017 16:11 — forked from jerrykrinock/gitcreate.sh
This script creates a new repo on github.com, then pushes to it the local repo from the current directory. Fork of https://gist.github.com/robwierzbowski/5430952/. Some of Rob's lines just didn't work for me, and I made it more verbose while fixing. UPDATE 2017-06-30. No longer needed by Xcode users because this capability is built into Xcode 9 :)
#!/bin/bash
# This script create a new repo on github.com, then pushes the local repo from the current directory to the new remote.
# It is a fork of https://gist.github.com/robwierzbowski/5430952/. Some of Rob's lines just didn't work for me, and to fix them I needed to make it more verbose so that a mere electrical engineer could understand it.
# This script gets a username from .gitconfig. If it indicates that your default username is an empty string, you can set it with
# git config --add github.user YOUR_GIT_USERNAME
# Gather constant vars
@qaraluch
qaraluch / romanNumeralConverter.md
Last active May 9, 2017 18:33
Roman Numeral Converter - Free Code Camp

Roman Numeral Converter - Free Code Camp

This is my solution for Roman Numeral Converter challenge on FCC.

// jshint esversion:6
function convertToRoman(num) {
  let splitedNum = num.toString().split('');

 function converter(place, decimal) {
@qaraluch
qaraluch / .eslintrc.js
Last active September 3, 2016 16:35
es lint rc config - start
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
@qaraluch
qaraluch / webpack.config.js
Created July 28, 2016 18:55
js: webpack simple config js - poprawka
module.exports = {
entry: './main.js',
output: {
path: './',
filename: 'index.js'
},
devServer: {
inline: true,
port: 3333
},
@qaraluch
qaraluch / webpack.config.js
Created July 28, 2016 18:01
js: webpack config js
module.export = {
entry: './main.js',
output: {
path: './',
filename: 'index.js'
},
devServer: {
inline: true,
port: 3333
},
@qaraluch
qaraluch / .eslintrc.js
Created July 27, 2016 05:08
js: eslint
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {