This file contains 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
;===================================================== | |
; | |
; To learn more about how to configure Polybar | |
; go to https://github.com/jaagr/polybar | |
; | |
; The README contains alot of information | |
; | |
;===================================================== | |
[colors] |
This file contains 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
# See: /usr/share/doc/mpd/mpdconf.example | |
pid_file "/run/mpd/mpd.pid" | |
db_file "/var/lib/mpd/mpd.db" | |
state_file "/var/lib/mpd/mpdstate" | |
playlist_directory "/home/yolan/mpd_playlist" | |
music_directory "/home/yolan/Music" | |
audio_output { |
This file contains 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
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
#Startup Shit |
This file contains 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
;===================================================== | |
; | |
; To learn more about how to configure Polybar | |
; go to https://github.com/jaagr/polybar | |
; | |
; The README contains alot of information | |
; | |
;===================================================== | |
[colors] |
This file contains 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
# See: /usr/share/doc/mpd/mpdconf.example | |
#pid_file "/run/mpd/mpd.pid" | |
#db_file "/var/lib/mpd/mpd.db" | |
#state_file "/var/lib/mpd/mpdstate" | |
#playlist_directory "/home/yolan/mpd_playlist" | |
#music_directory "/home/yolan/Music" | |
# Required files | |
db_file "~/.config/mpd/database" |
This file contains 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
MariaDB [TP_PHP]> SHOW COLUMNS FROM users; | |
+---------------+--------------+------+-----+---------+----------------+ | |
| Field | Type | Null | Key | Default | Extra | | |
+---------------+--------------+------+-----+---------+----------------+ | |
| id | int(11) | NO | PRI | NULL | auto_increment | | |
| pseudo | varchar(128) | YES | | NULL | | | |
| password | varchar(128) | YES | | NULL | | | |
| email | varchar(128) | YES | | NULL | | | |
| country | varchar(128) | YES | | NULL | | | |
| gender | int(1) | YES | | NULL | | |
This file contains 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
<?php | |
include('../config.php'); | |
$query = " | |
SELECT | |
id, | |
pseudo | |
FROM users | |
"; |
This file contains 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 <stdio.h> | |
#include <stdlib.h> | |
void CreatePlayground(int sizeWithBorder, char (*PlayingTab)[sizeWithBorder]) | |
{ | |
for (int i=0;i<sizeWithBorder;i++){ | |
for(int j=0;j<sizeWithBorder;j++){ | |
if(i == 0 || i == sizeWithBorder - 1){ | |
PlayingTab[i][j]='-'; | |
} |
This file contains 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
function CreateDolmen(x, z){ | |
dolmen = new THREE.Object3D(); | |
var geometry = new THREE.BoxGeometry( 1, 3, 1 ); | |
var textureUrl = 'images/rocks.jpg' | |
var texture = THREE.ImageUtils.loadTexture(textureUrl); |
This file contains 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
<!DOCTYPE html> | |
<script src="three.min.js"></script> | |
<script src='threex.grass.js'></script> | |
<script src='OrbitControls.js'></script> | |
<body style='margin: 0px; overflow: hidden;'><script> | |
var renderer = new THREE.WebGLRenderer({ | |
antialias : true | |
}); |
OlderNewer