Snippets Collections
import tkinter as tk
import numpy as np


# COPY HERE SHADOW CLASS


def test_click():
    button1.configure(text='You have clicked me!')


if __name__ == '__main__':
    root = tk.Tk()
    
    # Create dummy buttons
    button1 = tk.Button(root, text="Click me!", width=20, height=2, command=test_click)
    button1.grid(row=0, column=0, padx=50, pady=20)
    button2 = tk.Button(root, text="Hover me!", width=20, height=2)
    button2.bind('<Enter>', lambda e: button2.configure(text='You have hovered me!'))
    button2.grid(row=1, column=0, padx=50, pady=20)
    
    # Add shadow
    Shadow(button1, color='#ff0000', size=1.3, offset_x=-5, onclick={'color':'#00ff00'})
    Shadow(button2, size=10, offset_x=10, offset_y=10, onhover={'size':5, 'offset_x':5, 'offset_y':5})
    
    root.mainloop()
# Create the new column as a list
new_col = ['Lee Kun-hee', 'Xu Zhijun', 'Tim Cook', 'Tony Chen', 'Shen Wei']

# Assign the list to the DataFrame as a column
df['Current Chairperson'] = new_col
df
user = input("Hi, Im Aidan, what is your name?\n")
 
print(f"Well {user}, nice to meet you, your names kinda weird though.")
print(f"Nevertheless Im here to quiz you! To start, what is 7-4?")
 
 
larisha=input()
 
if(larisha =="3"):
    print("Thats right... Shawty.")
 
if(larisha !="3"):
    print("Seriously? How can you get it wrong, just count your fingers and try again.")
 
 
print("Moving on, What is 8x4?")
 
shawn=input()
 
if(shawn=="32"):
    print("Correct!")
 
if(shawn!="32"):
    print("Try again!")
 
print("Ok another question question what is the meaning of life?")
 
kelp=input()
 
if(kelp=="42"):
    print("Your very cool, its a great book.")
    
elif(kelp=="idk"):
    print("Then live your life in confusion.")
 
elif(kelp=="ethics"):
    print("bummer")

elif(kelp=="ass"):
    print("Bet https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab just copy and paste it.")
elif(kelp!="42"):
    print("Im sure your answer was amazing but no.")
    
print("Lets test your ethics.\n")
print("If, there was a dying man who needed $300 to get life saving sugery, and there was an Iron Maiden Concert that cost $300, which one would you choose, the man or the concert?")

bobby=input()
if(bobby=="the man"):
	print("Good choice, but you'll miss a great concert.")

elif(bobby=="the concert"):
	print("I mean, Iron Maiden is great but seriously you'd let a man die in return? yeesh")

elif(bobby!=["the man","the concert"]):
	print("That wasn't an answer, please use either, 'the man' or 'the concert'.")
    
print("Moving on... How many bones are in the human body?")
duke=input=()

if(duke=="206"):
	print("Jesus why do you know that, is so specific."

if(duke!="206"):
    print("Honestly I didn't know either I dont blame you for not knwowing one bit.")
print("It would seem as if the quiz is over, I know it didnt end as a math quiz but I sure had fun. See you later... or not." )



    
# The best you can do is create a new string that is a variation on the original
greeting = 'Hello, world!'
new_greeting = 'J' + greeting[1:]
print(new_greeting)

#output
Jello, world!
import clacks

# -- create a simple server instance.
# -- All keyword arguments can be left to their default in most cases.
server = clacks.ServerBase(identifier='My First Clacks Server')

# -- create a handler. Handlers are how the Server receives input requests.
handler = clacks.JSONHandler(clacks.JSONMarshaller(), server=server)

# -- once a handler has been created, it needs to be registered on a host/port combo.
server.register_handler_by_key(host='localhost', port=9998, handler_key='simple', marshaller_key='simple')

# -- give the server something to do - the "standard" interface contains some basic methods.
server.register_interface_by_key('standard')

# -- start the server. By setting "blocking" to True, we block this interpreter instance from progressing.
# -- Setting "blocking" to False instead would not stop this interpreter instance from continuing, so the server
# -- would die if the interpreter instance reaches its exit point.
server.start(blocking=True)
word = 'Python'

word[:2]   # character from the beginning to position 2 (excluded)
# 'Py'
word[4:]   # characters from position 4 (included) to the end
# 'on'
word[-2:]  # characters from the second-last (included) to the end
# 'on'
var <- "mpg"
#Doesn't work
mtcars$var
#These both work, but note that what they return is different
# the first is a vector, the second is a data.frame
mtcars[[var]]
mtcars[var]
# load packages
require(FactoMineR)
require(ggplot2)
# load data tea
data(tea)
# select these columns
newtea = tea[, c("Tea", "How", "how", "sugar", "where", "always")]
# take a look
head(newtea)


# number of categories per variable
cats = apply(newtea, 2, function(x) nlevels(as.factor(x)))
cats

# apply MCA
mca1 = MCA(newtea, graph = FALSE)

# table of eigenvalues
mca1$eig


# data frames for ggplot
mca1_vars_df = data.frame(mca1$var$coord, Variable = rep(names(cats), 
                                                         cats))
mca1_obs_df = data.frame(mca1$ind$coord)

# plot of variable categories
ggplot(data = mca1_vars_df,
       aes(x = Dim.1, y = Dim.2, label = rownames(mca1_vars_df))) + 
  geom_hline(yintercept = 0, colour = "gray70") + geom_vline(xintercept = 0, 
                                              colour = "gray70") +
  geom_text(aes(colour = Variable)) + 
  ggtitle("MCA plot of variables using R package FactoMineR")


# XXX ---------------------------------------------------------------------

Base_acm <- Base %>% select(P1_1, P3_1, P3_2, P3_3)
Base_acm$P1_1 <- as.factor(Base_acm$P1_1)
Base_acm$P3_1 <- as.factor(Base_acm$P3_1)
Base_acm$P3_2 <- as.factor(Base_acm$P3_2)
Base_acm$P3_3 <- as.factor(Base_acm$P3_3)

cats=apply(Base_acm, 2, function(x) nlevels(as.factor(x)))

mca2 = MCA(Base_acm, graph = FALSE)

# data frames for ggplot
mca2_vars_df = data.frame(mca2$var$coord, Variable = rep(names(cats), 
                                                         cats))
mca2_obs_df = data.frame(mca2$ind$coord)

# plot of variable categories
ggplot(data = mca2_vars_df,
       aes(x = Dim.1, y = Dim.2, label = rownames(mca2_vars_df))) + 
  geom_hline(yintercept = 0, colour = "gray70") + geom_vline(xintercept = 0, 
                                                        colour = "gray70") +
  geom_text(aes(colour = Variable)) + 
  ggtitle("MCA plot of variables using R package FactoMineR")

factoextra::fviz_screeplot(mca2, addlabels = TRUE, ylim = c(0, 45))
class ChangeDefaultvalueForHideSeasonSelector < ActiveRecord::Migration 
  def change 
    change_column_default :plussites, :hide_season_selector, true 
  end
end
onClick={() => window.open(url, "_blank")}
import { useEffect } from 'react';

export const useClickOutside = (ref, setIsModalOpen) => {
  useEffect(() => {
    function handleClickOutside(event) {
      if (ref.current && !ref.current.contains(event.target)) {
        setIsModalOpen(false)
      }
    }
    document.addEventListener("mousedown", handleClickOutside);
    return () => {
      document.removeEventListener("mousedown", handleClickOutside);
    };
  }, [ref]);
};
file = "#{Rails.root}/public/users.csv"
headers = ["Name", "Company Name", "Email", "Role", "Team Name"]
CSV.open(file, 'w', write_headers: true, headers: headers) do |writer|
    Team.all.each do |team|
      team.users.each do |user|
        writer << [user.name, user.company_name , user.email, user.roles&.first&.name, team.name]
      end
    end
  end
new GlideQuery('sys_user')
    .select('company$DISPLAY')
    .forEach(function (user) {
        gs.info(user.company$DISPLAY);
    });

// ACME North America
// ServiceNow
// ...
printf "%s\n%s\nus-east-1\njson" "$KEY_ID" "$SECRET_KEY" | aws configure --profile my-profile
select * 
from folder f
  join uploads u ON u.id = f.folderId 
where '8' = ANY (string_to_array(some_column,','))
DECLARE @AnyDate DATETIME
SET @AnyDate = GETDATE()

SELECT @AnyDate AS 'Input Date',
  DATEADD(q, DATEDIFF(q, 0, @AnyDate), 0) 
                        AS 'Quarter Start Date',       
  DATEADD(d, -1, DATEADD(q, DATEDIFF(q, 0, @AnyDate) + 1, 0)) 
                        AS 'Quarter End Date'
DROP TABLE EMP
DROP TABLE DEPT
DROP TABLE BONUS
DROP TABLE SALGRADE
DROP TABLE DUMMY

CREATE TABLE EMP
(EMPNO NUMERIC(4) NOT NULL,
ENAME VARCHAR(10),
JOB VARCHAR(9),
MGR NUMERIC(4),
HIREDATE DATETIME,
SAL NUMERIC(7, 2),
COMM NUMERIC(7, 2),
DEPTNO NUMERIC(2))

INSERT INTO EMP VALUES
(7369, 'SMITH', 'CLERK', 7902, '17-DEC-1980', 800, NULL, 20)
INSERT INTO EMP VALUES
(7499, 'ALLEN', 'SALESMAN', 7698, '20-FEB-1981', 1600, 300, 30)
INSERT INTO EMP VALUES
(7521, 'WARD', 'SALESMAN', 7698, '22-FEB-1981', 1250, 500, 30)
INSERT INTO EMP VALUES
(7566, 'JONES', 'MANAGER', 7839, '2-APR-1981', 2975, NULL, 20)
INSERT INTO EMP VALUES
(7654, 'MARTIN', 'SALESMAN', 7698, '28-SEP-1981', 1250, 1400, 30)
INSERT INTO EMP VALUES
(7698, 'BLAKE', 'MANAGER', 7839, '1-MAY-1981', 2850, NULL, 30)
INSERT INTO EMP VALUES
(7782, 'CLARK', 'MANAGER', 7839, '9-JUN-1981', 2450, NULL, 10)
INSERT INTO EMP VALUES
(7788, 'SCOTT', 'ANALYST', 7566, '09-DEC-1982', 3000, NULL, 20)
INSERT INTO EMP VALUES
(7839, 'KING', 'PRESIDENT', NULL, '17-NOV-1981', 5000, NULL, 10)
INSERT INTO EMP VALUES
(7844, 'TURNER', 'SALESMAN', 7698, '8-SEP-1981', 1500, 0, 30)
INSERT INTO EMP VALUES
(7876, 'ADAMS', 'CLERK', 7788, '12-JAN-1983', 1100, NULL, 20)
INSERT INTO EMP VALUES
(7900, 'JAMES', 'CLERK', 7698, '3-DEC-1981', 950, NULL, 30)
INSERT INTO EMP VALUES
(7902, 'FORD', 'ANALYST', 7566, '3-DEC-1981', 3000, NULL, 20)
INSERT INTO EMP VALUES
(7934, 'MILLER', 'CLERK', 7782, '23-JAN-1982', 1300, NULL, 10)

CREATE TABLE DEPT
(DEPTNO NUMERIC(2),
DNAME VARCHAR(14),
LOC VARCHAR(13) )

INSERT INTO DEPT VALUES (10, 'ACCOUNTING', 'NEW YORK')
INSERT INTO DEPT VALUES (20, 'RESEARCH', 'DALLAS')
INSERT INTO DEPT VALUES (30, 'SALES', 'CHICAGO')
INSERT INTO DEPT VALUES (40, 'OPERATIONS', 'BOSTON')

CREATE TABLE BONUS
(ENAME VARCHAR(10),
JOB VARCHAR(9),
SAL NUMERIC,
COMM NUMERIC)

CREATE TABLE SALGRADE
(GRADE NUMERIC,
LOSAL NUMERIC,
HISAL NUMERIC)

INSERT INTO SALGRADE VALUES (1, 700, 1200)
INSERT INTO SALGRADE VALUES (2, 1201, 1400)
INSERT INTO SALGRADE VALUES (3, 1401, 2000)
INSERT INTO SALGRADE VALUES (4, 2001, 3000)
INSERT INTO SALGRADE VALUES (5, 3001, 9999)

CREATE TABLE DUMMY
(DUMMY NUMERIC)

INSERT INTO DUMMY VALUES (0)
BACKUP RESTORE:

//Copy your backup file to frappe-bench folder:
LS -- To show files in folder:

//REPLACE SITE1.LOCAL WITH YOUR SITE NAME:
//REPLACE DATABASE_FILE NAME WITH YOUR DATABASE BACKUP FILE.

bench --site site1.local --force restore [database_file] --with-private-files [private_file] --with-public-files [public_file]


//bench --site site1.local --force restore 20230918_102707-site1_local-database-enc.sql.gz --with-private-files 20230918_102707-site1_local-private-files-enc.tar --with-public-files 20230918_102707-site1_local-files-enc.tar

bench --site site1.local 
--force restore 20230918_102707-site1_local-database-enc.sql.gz 
--with-private-files 20230918_102707-site1_local-private-files-enc.tar 
--with-public-files 20230918_102707-site1_local-files-enc.tar

----------------------------------------------------------------------------------
APPs INSTALL ON BACKUP..
1-ERPNEXT
2-FRAPPE
3-HRMS
4-CHAT
-------------
APPS INTALL ON YOUR LOCAL SITE....???
CHECK YOUR INSTALLATION BY "bench version"
-----------------------------------------

    
REMOVE APP:
bench --site site1.local uninstall-app chat
bench --site site1.local uninstall-app app_name

//REMOVE OTHER APP THAT YOU HAVE EXTRA INSTALL.

REMOVE APP FROM YOUR BACKUP:
bench --site site1.local remove-from-installed-apps erpnext_support
bench --site site1.local remove-from-installed-apps journeys

------------------------------------------------------------------------------------

INSTALL HRM:
bench get-app hrms --branch version-14
bench --site sitename install-app hrms

INSTALL CHAT:
bench get-app chat
bench --site site1.local install-app chat

//INSTALL APP THAT YOU DO NOT HAVE ON YOUR SITE BUT HAVE IN BACKUP.

-------------------------------------------------------------------------------------
//Finally Bench Migrate
bench migrate

=====================​

Taimoor
Whatsapp::  +92300-9808900
array.sort((x, y) => +new Date(x.createdAt) - +new Date(y.createdAt));
// Get path to resource on disk
 const onDiskPath = vscode.Uri.file( 
   path.join(context.extensionPath, 'css', 'style.css')
);
// And get the special URI to use with the webview
const cssURI = panel.webview.asWebviewUri(onDiskPath);
Function Ping(strip)
Dim objshell, boolcode
Set objshell = CreateObject("Wscript.Shell")
boolcode = objshell.Run("ping -n 1 -w 1000 " & strip, 0, True)
If boolcode = 0 Then
    Ping = True
Else
    Ping = False
End If
End Function
Sub PingSystem()
Dim strip As String
Dim strPhoneNumber As String
Dim strMessage As String
Dim strPostData As String
Dim IE As Object

strPhoneNumber = Sheets("DATA").Cells(2, 1).Value

For introw = 2 To ActiveSheet.Cells(65536, 2).End(xlUp).Row
    strip = ActiveSheet.Cells(introw, 2).Value
    If Ping(strip) = True Then
        ActiveSheet.Cells(introw, 3).Interior.ColorIndex = 0
        ActiveSheet.Cells(introw, 3).Font.Color = RGB(0, 0, 0)
        ActiveSheet.Cells(introw, 3).Value = "Online"
        Application.Wait (Now + TimeValue("0:00:01"))
        ActiveSheet.Cells(introw, 3).Font.Color = RGB(0, 200, 0)
        
'Send Whatsapp Message
        strMessage = "Ping " & ActiveSheet.Cells(introw, 1).Value & " " & ActiveSheet.Cells(introw, 2).Value & " is Online"
        
'IE.navigate "whatsapp://send?phone=phone_number&text=your_message"
        strPostData = "whatsapp://send?phone=" & strPhoneNumber & "&text=" & strMessage
        Set IE = CreateObject("InternetExplorer.Application")
        IE.navigate strPostData
        Application.Wait Now() + TimeSerial(0, 0, 3)
        SendKeys "~"

        Set IE = Nothing
        
    Else
        ActiveSheet.Cells(introw, 3).Interior.ColorIndex = 0
        ActiveSheet.Cells(introw, 3).Font.Color = RGB(200, 0, 0)
        ActiveSheet.Cells(introw, 3).Value = "Offline"
        Application.Wait (Now + TimeValue("0:00:01"))
        ActiveSheet.Cells(introw, 3).Interior.ColorIndex = 6
        
'Send Whatsapp Message
        strMessage = "Ping " & ActiveSheet.Cells(introw, 1).Value & " " & ActiveSheet.Cells(introw, 2).Value & " is Offline"
        
'IE.navigate "whatsapp://send?phone=phone_number&text=your_message"
        strPostData = "whatsapp://send?phone=" & strPhoneNumber & "&text=" & strMessage
        Set IE = CreateObject("InternetExplorer.Application")
        IE.navigate strPostData
        Application.Wait Now() + TimeSerial(0, 0, 3)
        SendKeys "~"
        Set IE = Nothing
    End If
Next
End Sub
yarn typopack build watch

eval $(ssh-agent -s)

yarn dep deploy 
yarn dep deploy production
                                const array = [1, 1, 1, 3, 3, 2, 2];

// Method 1: Using a Set
const unique = [...new Set(array)];

// Method 2: Array.prototype.reduce
const unique = array.reduce((result, element) => {
  return result.includes(element) ? result : [...result, element];
}, []);

// Method 3: Array.prototype.filter
const unique = array.filter((element, index) => {
  return array.indexOf(element) === index;
});
                                
;; Equivalent to: (fn [x] (+ 6 x))
#(+ 6 %)

;; Equivalent to: (fn [x y] (+ x y))
#(+ %1 %2)

;; Equivalent to: (fn [x y & zs] (println x y zs))
#(println %1 %2 %&)
                                
 .rotate {

  transform: rotate(-90deg);


  /* Legacy vendor prefixes that you probably don't need... */

  /* Safari */
  -webkit-transform: rotate(-90deg);

  /* Firefox */
  -moz-transform: rotate(-90deg);

  /* IE */
  -ms-transform: rotate(-90deg);

  /* Opera */
  -o-transform: rotate(-90deg);

  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}
                                
// this code is probably what you want
cy.server()
cy.route('/users/**', {...})
cy.visit('http://localhost:8000/#/app')
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var slug = require('mongoose-slug-generator');

mongoose.plugin(slug);

const pageSchema = new Schema({
    title: { type: String , required: true},
    slug: { type: String, slug: "title" }
});

var Page = mongoose.model('Page', pageSchema);
module.exports = Page;
<FilesMatch "^(filename|secondfilename)\.pdf$">
    Header set X-Robots-Tag "noindex, noarchive, nosnippet"
</FilesMatch>
[expand title="Displayed Title Goes Here"]Hidden content goes here[/expand]
[full_width][/full_width]
[one_half][/one_half]
[one_half_last][/one_half_last]
[one_third][/one_third]
[one_third_last][/one_third_last]
[two_third][/two_third]
[two_third_last][/two_third_last]
[one_fourth][/one_fourth]
[one_fourth_last][/one_fourth_last]
[three_fourth][/three_fourth]
[three_fourth_last][/three_fourth_last]
[one_fifth][/one_fifth]
[one_fifth_last][/one_fifth_last]
[two_fifth][/two_fifth]
[two_fifth_last][/two_fifth_last]
[three_fifth][/three_fifth]
[three_fifth_last][/three_fifth_last]
[four_fifth][/four_fifth]
[four_fifth_last][/four_fifth_last]
[one_sixth][/one_sixth]
[one_sixth_last][/one_sixth_last]
[five_sixth][/five_sixth]
[five_sixth_last][/five_sixth_last]
h = HashWithIndifferentAccess.new
h[:my_value] = 'foo'
h['my_value'] #=> will return "foo"
sudo apt-get install php-mbstring

# if your are using php 7.1
sudo apt-get install php7.1-mbstring

# if your are using php 7.2
sudo apt-get install php7.2-mbstring
<script>
 window.addEventListener("load", function(){
 var currentTime = new Date();
 var hours = currentTime.getHours();
 var minutes = currentTime.getMinutes();
 var t =currentTime.getHours()  + ":" + currentTime.getMinutes();

 var newButton = document.getElementById("submit");

 if(t >= 10:25 && t <= 11:25) {
   newButton.style.display = "none";
 }
 else {
   newButton.style.display = "block";
 }
 }, false);
</script>
runtime: nodejs
env: flex

# This sample incurs costs to run on the App Engine flexible environment.
# The settings below are to reduce costs during testing and are not appropriate
# for production use. For more information, see:
# https://cloud.google.com/appengine/docs/flexible/nodejs/configuring-your-app-with-app-yaml
manual_scaling:
  instances: 1
resources:
  cpu: 1
  memory_gb: 0.5
  disk_size_gb: 10
T2 = [[13, 17, 18, 21, 32], [7, 11, 13, 14, 28], [1, 5, 6, 8, 15, 16]]
$sudo /etc/init.d/apache2 stop

$sudo /etc/init.d/mysql stop

$sudo /etc/init.d/proftpd stop
star

Thu May 12 2022 20:14:47 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/42750939/how-to-add-shadow-to-tkinter-frame

@TWOGUNSKID #python

star

Sun Jul 10 2022 05:52:05 GMT+0000 (Coordinated Universal Time) https://snipit.io/

@nilotpalc #python

star

Wed Sep 21 2022 12:03:30 GMT+0000 (Coordinated Universal Time)

@Aidan_Jab #python

star

Thu Sep 22 2022 01:38:40 GMT+0000 (Coordinated Universal Time) https://www.py4e.com/html3/06-strings

@L0uJ1rky45M #python

star

Sun Apr 02 2023 15:24:44 GMT+0000 (Coordinated Universal Time)

@MaVCArt #python

star

Tue Apr 04 2023 03:22:33 GMT+0000 (Coordinated Universal Time) https://docs.python.org/3/tutorial/introduction.html

@tofufu #python

star

Thu Mar 11 2021 14:57:05 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/18222286/dynamically-select-data-frame-columns-using-and-a-character-value

@stephenb30 #r

star

Thu May 20 2021 21:04:33 GMT+0000 (Coordinated Universal Time)

@TomasG #r

star

Thu Aug 27 2020 16:52:41 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/42668391/change-the-default-value-for-table-column-with-migration

@ludaley #rb

star

Mon Dec 13 2021 13:39:01 GMT+0000 (Coordinated Universal Time)

@dickosmad #react.js

star

Wed Apr 27 2022 06:49:33 GMT+0000 (Coordinated Universal Time)

@happy_cutman #react.js

star

Mon May 11 2020 16:38:22 GMT+0000 (Coordinated Universal Time) custom

@ayazahmadtarar #ruby #rubyonrails

star

Thu Mar 18 2021 19:56:16 GMT+0000 (Coordinated Universal Time) https://developer.servicenow.com/blog.do?p=/post/glidequery-p5/

@dorian #servicenow

star

Tue Feb 08 2022 12:31:59 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/34839449/aws-configure-bash-one-liner/34844267

@jrsl #sh

star

Tue Feb 02 2021 18:00:05 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/35169412/mysql-find-in-set-equivalent-to-postgresql

@mvieira #sql

star

Sat Oct 09 2021 17:28:32 GMT+0000 (Coordinated Universal Time) https://sqlhints.com/2013/07/20/how-to-get-quarter-start-end-date-sql-server/

@rick_m #sql

star

Tue Nov 22 2022 23:12:39 GMT+0000 (Coordinated Universal Time) https://arjunjune.wordpress.com/2013/01/15/emp-and-dept-table-script-sql-server/

@girijason #sql

star

Mon Sep 18 2023 10:22:00 GMT+0000 (Coordinated Universal Time)

@Taimoor #terminal

star

Thu Jul 22 2021 06:18:03 GMT+0000 (Coordinated Universal Time) https://codepen.io/bchiang7/pen/ZEboePJ?editors

@davidTheNerdy #toggletheme

star

Mon Nov 16 2020 14:22:51 GMT+0000 (Coordinated Universal Time) https://www.google.com/search?q

@ali_alaraby #typescript

star

Sat Feb 06 2021 13:14:41 GMT+0000 (Coordinated Universal Time) https://mishka.codes/webviews-in-vscode

@mishka #typescript

star

Tue Nov 10 2020 07:16:25 GMT+0000 (Coordinated Universal Time) https://www.codegrepper.com/code-examples/javascript/add+property+to+object+javascript+using+".map()"

@ali_alaraby #undefined

star

Tue Jun 08 2021 16:03:17 GMT+0000 (Coordinated Universal Time)

@onlinecesaref #vba

star

Mon Dec 20 2021 13:07:43 GMT+0000 (Coordinated Universal Time)

@verena_various #yarn

star

Wed Apr 29 2020 11:05:28 GMT+0000 (Coordinated Universal Time) https://css-tricks.com/snippets/javascript/remove-duplicates-from-an-array/

@Doll

star

Thu Apr 30 2020 06:33:12 GMT+0000 (Coordinated Universal Time) https://clojure.org/guides/learn/functions

@deku

star

Thu Apr 30 2020 07:17:50 GMT+0000 (Coordinated Universal Time) https://css-tricks.com/snippets/css/text-rotation/

@SunLoves

star

Fri May 01 2020 02:31:01 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/41034866/running-jupyter-via-command-line-on-windows

@saeed_dev

star

Tue May 05 2020 23:01:55 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/18300377/xampp-apache-error-apache-shutdown-unexpectedly

@Dante Frank

star

Mon May 11 2020 01:18:24 GMT+0000 (Coordinated Universal Time) https://docs.cypress.io/api/commands/visit.html

@hanatakaruki

star

Thu May 14 2020 00:39:38 GMT+0000 (Coordinated Universal Time) https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/smallest-common-multiple

@prasen

star

Thu May 14 2020 11:51:34 GMT+0000 (Coordinated Universal Time) https://www.thiscodeworks.com/user/5dbfe7d22b803000141a387e/dashboard

@Ashwinkumar Pillai

star

Thu May 14 2020 15:06:03 GMT+0000 (Coordinated Universal Time)

@lbrand

star

Fri May 15 2020 15:12:28 GMT+0000 (Coordinated Universal Time) https://es.stackoverflow.com/questions/63271/term-environment-variable-not-set

@madeusblack

star

Fri May 15 2020 16:35:46 GMT+0000 (Coordinated Universal Time) https://www.thiscodeworks.com/5eb1925ec91c160014b71fc4

@madeusblack

star

Sat May 16 2020 20:03:52 GMT+0000 (Coordinated Universal Time) https://www.wpoptimus.com/477/add-collapsible-faqs-using-collapse-o-matic/

@Timefire2233

star

Sat May 16 2020 20:15:06 GMT+0000 (Coordinated Universal Time) https://wordpress.org/plugins/column-shortcodes/

@Timefire2233

star

Sun May 17 2020 03:15:29 GMT+0000 (Coordinated Universal Time) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf

@UlisesVilla

star

Sun May 17 2020 03:16:37 GMT+0000 (Coordinated Universal Time) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push

@UlisesVilla

star

Mon May 18 2020 19:18:47 GMT+0000 (Coordinated Universal Time) https://www.toptal.com/ruby-on-rails/interview-questions

@ayazahmadtarar

star

Wed May 20 2020 04:53:45 GMT+0000 (Coordinated Universal Time) https://codetogo.io/how-to-wait-in-async-await-functions-in-javascript/

@bmweinstein

star

Wed May 20 2020 13:00:31 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/32488917/composer-the-requested-php-extension-mbstring-is-missing-from-your-system

@Muhamad FKH.

star

Wed May 20 2020 16:17:45 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/47216001/disable-submit-button-between-two-time-period

@hasnaindev

star

Wed May 20 2020 16:18:31 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/47216001/disable-submit-button-between-two-time-period

@hasnaindev

star

Fri May 22 2020 13:16:06 GMT+0000 (Coordinated Universal Time) https://cloud.google.com/appengine/docs/flexible/nodejs/configuring-your-app-with-app-yaml

@moaaz

star

Fri May 22 2020 20:01:27 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/642154/how-to-convert-strings-into-integers-in-python

@_ac_

star

Fri May 22 2020 20:37:57 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/40480843/xampp-another-web-server-is-already-running

@Muhamad FKH.

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension