This file contains hidden or 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
| const fs = require('fs'); | |
| const path = require('path'); | |
| // dir fergy linked | |
| const dir1 = '/Users/abb2175/work/react-build-store-alt/node_modules'; | |
| // regular dir | |
| const dir2 = '/Users/abb2175/work/react-build-store/node_modules'; | |
| // compareDirectories(dir1, dir2, 1); | |
| const result = findUniqueFiles(dir1, dir2, 1); |
This file contains hidden or 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 pygame | |
| def main(): | |
| canvas_width = 800 | |
| canvas_height = 600 | |
| pygame.init() | |
| screen = pygame.display.set_mode((canvas_width, canvas_height)) | |
| pygame.display.set_caption("Ball Example") |
This file contains hidden or 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
| return { | |
| override_enabled = true, | |
| unprepared = { -- "never", "rare", "default", "often", "always" | |
| berrybush = "default", | |
| cactus = "default", | |
| carrot = "default", | |
| mushroom = "default", | |
| }, | |
| misc = { | |
| autumn = "default", -- "noseason", "veryshortseason", "shortseason", "default", "longseason", "verylongseason", "random" |
This file contains hidden or 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
| function FTP-File($FTPserver, $FTPusername, $FTPpassword, $FTPfile){ | |
| #Build FTP script file and run FTP command | |
| "open $FTPserver" | Out-File ftp.scr -Encoding ASCII | |
| $FTPusername | Out-File ftp.scr -Encoding ASCII -Append | |
| $FTPpassword | Out-File ftp.scr -Encoding ASCII -Append | |
| "put " + $FTPfile | Out-File ftp.scr -Encoding ASCII -Append | |
| "quit" | Out-File ftp.scr -Encoding ASCII -Append | |
| ftp.exe -s:ftp.scr |