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
| 250 dattes, hacher fin | |
| 60g poudre amande | |
| 20g graines chia | |
| 60g beurre de cacahuète | |
| 1 pincée de sel | |
| 3 càs d'eau | |
| pour 8-10mm d'épaisseur et rectangles de 3x8cm, mettre au four à 80 degrés pendant 1h |
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
| { | |
| "camera": { | |
| "device": 0, | |
| "width": 1280, | |
| "height": 720, | |
| "fps": 60 | |
| }, | |
| "detection": { | |
| "confidence_threshold": 0.5, | |
| "model": "yolov8n.pt" |
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
| INGREDIENTS | |
| 1 cup dried green lentils (2 1/4 cups cooked) | |
| 2 1/4 cups water | |
| 1 tsp dried parsley | |
| 1 1/4 cups finely chopped red onion | |
| 3 cups finely chopped mixed mushrooms | |
| 1 1/2 cups finely chopped kale or spinach | |
| 1 tbsp olive or coconut oil | |
| 3/4 cup walnuts, finely chopped | |
| 1 1/2 cups whole wheat bread crumbs (gluten free if you wish) |
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
| <h2><%= @page.post_title |> Phoenix.HTML.raw %></h2> | |
| <div class="workspace"> | |
| <div class="content_old" style="flex: 0 0 50%; background: #ccc; padding: 1em;"> | |
| <%= @page.post_content |> Phoenix.HTML.raw %> | |
| </div> | |
| <div class="content_highlighter" style="flex: 0 0 50%; background: #f8f8f8; padding: 1em;"> | |
| <%= @page.post_content |> Phoenix.HTML.raw %> | |
| </div> | |
| </div> |
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
| mysql> create database things; | |
| mysql> create user "name@server" identified with mysql_native_password "password"; | |
| mysql> grant all privileges on things.* to "name@server"; | |
| mysql> flush privileges; |
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
| sudo ext4fuse /dev/disk2s1 /Users/lucas/Desktop/linux -o allow_other |
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
| location /wsapp/ { | |
| proxy_pass http://wsbackend; | |
| proxy_http_version 1.1; | |
| proxy_set_header Upgrade $http_upgrade; | |
| proxy_set_header Connection "Upgrade"; | |
| } |
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
| plug Plug.Parsers, | |
| parsers: [App.RawBodyPlug, :urlencoded, :multipart, :json], | |
| pass: ["*/*"], | |
| json_decoder: Phoenix.json_library() |
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
| find . -name "*.wav" -exec ffmpeg -i {} -ab 160k -map_metadata 0 -id3v2_version 3 {}.mp3 \; |
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
| #!/env/bin/bash | |
| gs \ | |
| -o downsampled.pdf \ | |
| -sDEVICE=pdfwrite \ | |
| -dDownsampleColorImages=true \ | |
| -dDownsampleGrayImages=true \ | |
| -dDownsampleMonoImages=true \ | |
| -dColorImageResolution=72 \ | |
| -dGrayImageResolution=72 \ | |
| -dMonoImageResolution=72 \ |
NewerOlder