Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
using System; | |
using System.IO; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
namespace TestConsole | |
{ | |
// From https://stackoverflow.com/a/41392145/4213397 |
--- | |
- hosts: localhost | |
connection: local | |
gather_facts: true | |
tasks: | |
- name: Add APT repositories | |
when: ansible_os_family == 'Debian' | |
become: true | |
block: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
--- | |
blueprint: | |
name: Conversation agent Agenda Notification | |
description: | |
Conversation agent generates a notification based on the upcoming calendar | |
agenda, location, and weather information. | |
domain: automation | |
input: | |
notify_time: | |
name: Notification time |
shader_type canvas_item; | |
const vec2 VERTICES[4] = vec2[](vec2(0.0),vec2(0.0,1.0),vec2(1.0),vec2(1.0,0.0)); | |
varying vec2 originalUV; | |
varying flat vec4 regionInfo; | |
uniform int outline_size:hint_range(0,10) = 1; | |
uniform vec4 outline_color:source_color = vec4(1.0); | |
void vertex() { |
The commands in this article are run on Debian 12 Bookworm. If your system is Ubuntu or any other Debian based distribution, the default locations may be different, but the instructions remain same.
Assuming you have downloaded NVIDIA Drivers from apt repository, (in case you have downloaded NVIDIA Driver from Website, please refer the 1st web page in References).
Ensure that Secure Boot is Off or Secure Boot is enabled in Audit Mode (Depends on your PC manufacturer UEFI). You could change Secure Boot mode in UEFI settings.
Here its in Deployed mode, change it to Audit mode.
Secure Boot state can be checked by
:root { | |
--vscode-font-weight:normal; | |
--vscode-font-size:13px; | |
--vscode-editor-font-family:"Operator Mono Lig", "Cascadia Code"; | |
--vscode-editor-font-weight:normal; | |
--vscode-editor-font-size:15px; | |
--vscode-foreground:#f3eff5; | |
--vscode-errorForeground:#f48771; | |
--vscode-descriptionForeground:rgba(243, 239, 245, 0.7); | |
--vscode-icon-foreground:#c5c5c5; |
/* open up chrome dev tools (Menu > More tools > Developer tools) | |
* go to network tab, refresh the page, wait for images to load (on some sites you may have to scroll down to the images for them to start loading) | |
* right click/ctrl click on any entry in the network log, select Copy > Copy All as HAR | |
* open up JS console and enter: var har = [paste] | |
* (pasting could take a while if there's a lot of requests) | |
* paste the following JS code into the console | |
* copy the output, paste into a text file | |
* open up a terminal in same directory as text file, then: wget -i [that file] | |
*/ |
#!/usr/bin/env ruby | |
# Find duplicate movies with possible different extensions | |
require 'fileutils' | |
require 'colored' | |
include FileUtils | |
module FindDuplicateMovies |
Ideas for profitable investigations and an index of experimental results. Free to a good home; will post results as they come in.
Very fruitful - finally understood how the mySunPower app's SunVault mode changes are communicated to the PVS6, which performs the system control described by the modes, and found a potential method of changing the command and data acquisition server from one in the cloud to one that is locally controlled.