This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Config that is very close to a i3 window manager's keybinding. | |
| set -s escape-time 0 | |
| setw -g aggressive-resize on | |
| # First remove *all* keybindings | |
| unbind-key -a | |
| # List keys | |
| bind-key ? list-keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [global] | |
| font = Ubuntu 10 | |
| # Allow a small subset of html markup in notifications and formats: | |
| # <b>bold</b> | |
| # <i>italic</i> | |
| # <s>strikethrough</s> | |
| # <u>underline</u> | |
| # | |
| # For a complete reference see |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # ███╗ ███╗ ██████╗ ██╗ ██╗███████╗██████╗ ████████╗ ██████╗ | |
| # ████╗ ████║██╔═══██╗██║ ██║██╔════╝██╔══██╗ ╚══██╔══╝██╔═══██╗ | |
| # ██╔████╔██║██║ ██║██║ ██║█████╗ ██║ ██║ ██║ ██║ ██║ | |
| # ██║╚██╔╝██║██║ ██║╚██╗ ██╔╝██╔══╝ ██║ ██║ ██║ ██║ ██║ | |
| # ██║ ╚═╝ ██║╚██████╔╝ ╚████╔╝ ███████╗██████╔╝ ██║ ╚██████╔╝ | |
| # ╚═╝ ╚═╝ ╚═════╝ ╚═══╝ ╚══════╝╚═════╝ ╚═╝ ╚═════╝ | |
| # | |
| # ╔═════════════════════════════════════════════════════════════════╗ | |
| # ║ https://github.com/denilsonsa/udev-joystick-blacklist ║ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Person: | |
| def __init__(self, name): | |
| self.name = name | |
| self._address = "" | |
| def getName(self): | |
| return self.name | |
| def getAddress(self): | |
| return self._address |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| def run(): | |
| inputNum = input("Expect Number : ") | |
| inputNum = int(inputNum) | |
| expectNum = inputNum | |
| previousNum = 0 | |
| currentNum = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| #----------------------------------------# | |
| # Auto Start App on specific workspace. # | |
| #----------------------------------------# | |
| # Setup Bar | |
| exec polybar mystatus -q & | |
| # Setup Workspace 8 | |
| i3-msg "workspace 8" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2 | |
| #-*- coding: utf-8 -*- | |
| # NOTE FOR WINDOWS USERS: | |
| # You can download a "exefied" version of this game at: | |
| # http://hi-im.laria.me/progs/tetris_py_exefied.zip | |
| # If a DLL is missing or something like this, write an E-Mail (me@laria.me) | |
| # or leave a comment on this gist. | |
| # Very simple tetris implementation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias fd-WWW="cd /home/csaratakij/TTT" | |
| alias fd-git="cd /home/csaratakij/@GitRepository" | |
| alias fd-fdir="cd /home/csaratakij/@GitRepository/FDir" | |
| alias fd-music="cd /home/csaratakij/Music" | |
| alias fd-download="cd /home/csaratakij/Downloads" | |
| alias fd-video="cd /home/csaratakij/Videos" | |
| alias fd-tools="cd /home/csaratakij/Tools" | |
| alias fd-prototypeA="cd /home/csaratakij/@GitRepository/PrototypeA" | |
| alias fd-picture="cd /home/csaratakij/Pictures" | |
| alias fd-godot-custom="cd /home/csaratakij/Tools/Utils/Godot/Custom" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <stdbool.h> | |
| struct OrderInfo | |
| { | |
| int price = 0; | |
| std::string customerName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| #endif | |
| public class CustomCollision : MonoBehaviour |