Here is My Code import 'package:flutter/material.dart'; import 'package:screenshot/screenshot.dart'; import 'package:sweld/globals.dart'; import 'package:geoloc
I am trying to create a comic website, but I want to protect the images to avoid copying the image. I want to do something like the Webtoons viewer. I have no i
I have Emacs running in WSL2 GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw scroll bars) of 2021-07-20 About couple of w
I have two arrays as below: $arr1 = array(1,2,3, 1,2,3, 1,2,3); $arr2 = array(1,2,3) I need to check that they are same array. I did somethi
I have use case where I have to do some operations on an excel file in python. There will be 2 processes running in parallel. The main.py file will open an exce
#define __SFR_OFFSET 0x00 #include "avr/io.h" .global START .global BTN_LED START: SBI DDRB, 2 SBI DDRB, 3 SBI DDRB, 4 CBI DDRD, 2 CBI DDRD, 3 CBI DDRD, 4 RET
What is the difference between SQL statements create temp table temp_1 And create table #temp_1 used in creating temporary table or are both the same ?