Releases: github.com/sass/dart-sass/releases
Sass is the name of the CSS pre-processor language. It comes in two syntaxes:
Releases: github.com/sass/dart-sass/releases
Sass is the name of the CSS pre-processor language. It comes in two syntaxes:
| SELECT TOP 1 * | |
| INTO #foo | |
| FROM T_Benutzer | |
| ; | |
| IF OBJECT_ID('tempdb..#NOT_foo') IS NOT NULL DROP TABLE [#foo]; -- this is presumed buggy | |
| -- Find leaking temp-tables |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\SSRS\CPE] | |
| "CustomerFeedback"=dword:00000000 | |
| "EnableErrorReporting"=dword:00000000 |
| #!/usr/bin/env bash | |
| # | |
| # restart_xrdp.sh - Interactive restart for xrdp related services | |
| # | |
| echo "Select what to restart:" | |
| echo "1) chansrv" | |
| echo "2) xrdp" | |
| echo "3) xrdp-sesman" | |
| echo "4) xrdp + xrdp-sesman" |
| #!/usr/bin/env bash | |
| # | |
| # kill_rider.sh - Kill all processes containing "rider" (case-insensitive) | |
| # | |
| # List matching processes first for safety, excluding this script itself | |
| echo "🔍 Matching processes:" | |
| ps aux | grep -i rider | grep -v grep | grep -v kill_rider.sh | |
| # Ask for confirmation before killing |
| DECLARE @sql national character varying(1000); | |
| DECLARE @restart_value bigint; | |
| SET @restart_value = ISNULL( | |
| ( | |
| SELECT ISNULL(MAX(ifcd_drawing_id), 0) FROM ifc.ifc_drawings | |
| ) | |
| , 0) + 1; |
| IF NOT EXISTS | |
| ( | |
| SELECT * FROM INFORMATION_SCHEMA.TABLES | |
| WHERE TABLE_TYPE = 'BASE TABLE' | |
| AND TABLE_SCHEMA = 'dbo' | |
| AND TABLE_NAME = 'room' | |
| ) | |
| BEGIN | |
| EXECUTE(N' |
| DECLARE @sql nvarchar(MAX); | |
| DECLARE object_cursor CURSOR FOR | |
| SELECT | |
| N' | |
| ;WITH CTE AS | |
| ( |
| sudo apt-get remove --purge google-chrome-stable | |
| cd ~/Downloads | |
| wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| sudo dpkg -i google-chrome-stable_current_amd64.deb | |
| sudo apt-get update | |
| sudo dpkg-divert --divert /usr/bin/original-google-chrome-stable --rename /usr/bin/google-chrome-stable | |
| dpkg-divert --list |
| SELECT | |
| sch.name AS referenced_schema | |
| ,o.name AS referended_object | |
| ,o.type_desc AS referenced_object_type | |
| -- ,pk_cols.COLUMN_NAME AS primary_key_column | |
| FROM sys.sql_expression_dependencies AS d | |
| JOIN sys.objects AS o ON d.referenced_id = o.object_id | |
| JOIN sys.schemas AS sch ON sch.schema_id = o.schema_id |