Mind of tjiho

Lol

lol

wmic path softwareLicensingService get OA3xOriginalProductKey

KG2NM-3WRRC-VKX3W-H7Y72-MP2KC

Ciné 2021


Simon:


Other:


api ciné

https://www.bdfci.info/

cineserie.com

Super Frigo

Food recognition:

Datasets

Code

Commandes

grep -n <text> <directory>: search text in all file and display line
netstat -ltup: affiche les connections actives

wifi

sudo iw wlp3s0f3u2u2 set power_save off

nmcli connection modify Clochette wifi.powersave disable

sound

wpctl set-default 58
wpctl status
wpctl set-volume @DEFAULT_SINK@ .10- # decrease sound by 10%

Git

Merge

grub option pour vieux pc

Dans /etc/default/grub

puis update-grub

http://mylinuxexplore.blogspot.com/2011/11/solved-ubuntu-doesnt-shutdown-properly.html

musique

Snippets vscode

vue-js

{
	// Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	// "Print to console": {
	// 	"prefix": "log",
	// 	"body": [
	// 		"console.log("$1");",
	// 		"$2"
	// 	],
	// 	"description": "Log output to console"
	// }
	"component": {
		"prefix": "<template>",
		"body": [
			"<template></template>",
			"<script>",
			"import { Fragment } from \"vue-fragment\"",
			"import { bus } from \"../main.js\"",
			"export default {",
			"  props: {",
			"  },",
			"  data() {",
			"    return {}",
			"  },",
			"  mounted() {",
      "    bus.$on(\"navigation\", () => {",
      "    })",
			"  },",
			"  methods: {},",
			"  components: { Fragment },",
			"}",
			"</script>"
		]
	}
}

Genre et tri

Patricia Kaas -> chanson française, chant thomas fersen -> chanson francaise (style 2000) Pauline Croze -> chanson francaise style zaz/pop

psql

\l => list database
\c <db name>: connect to a certain database
\dt: list all tables in the current database using your search_path
\dt *.: list all tables in the current database regardless your search_path
SELECT * FROM osm_poi_point LIMIT 1

SELECT name,name_en,subclass,mapping_key,osm_id,geometry FROM osm_poi_point WHERE name <> '' LIMIT 1;