This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | |
<Package xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<types> | |
<members>*</members> | |
<name>ActionLinkGroupTemplate</name> | |
</types> | |
<types> | |
<members>*</members> | |
<name>AnimationRule</name> | |
</types> |
This file contains 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
import math | |
import matplotlib.pyplot as plt | |
def plot_grid_images(images, labels, columns=5, image_size=None, figsize=(8, 8), cmap='gray', title=None, file_name=None): | |
fig = plt.figure(figsize=figsize) | |
fig.tight_layout(h_pad=3) | |
rows = math.ceil(len(images)/columns) | |
for image, label, position in zip(images, labels, range(1, len(labels)+1)): | |
fig.add_subplot(rows, columns, position) | |
if image_size is not None: |
This file contains 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
**/staticresources/** | |
.localdevserver | |
.sfdx | |
coverage/ |
This file contains 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
# Importing Libaries | |
import requests | |
import os | |
import random | |
no_of_images_to_pull = int(input('How many avatars you need? ')) | |
size = tuple(input('Enter the image size(eg. 400x400): ').split('x')) | |
base_url = 'https://dummyimage.com/' | |
colors = ( | |
('fff', '000'), |
This file contains 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
#include<stdio.h> | |
#include<conio.h> | |
#include<stdlib.h> | |
#include<string.h> | |
int min(int,int,int); | |
void main() { | |
int r,c,i,j; | |
char firstword[30], secondword[30]; |