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
| https://ibb.co/B3jYxKF | |
| Link Of My First Certificate From FreeCodeCamp | |
| 300 Hours Of Scientific Computing With Python | |
| Also Check My Profile I Will Be Uploading My Little Codes There. |
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
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "pwa-node", | |
| "request": "launch", | |
| "name": "Run Current File", |
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
| sh -c "$(curl -fsSL https://bit.ly/3IBgWGP)" |
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
| . . . | |
| constructor( | |
| private jwtService: JwtService, | |
| private configService: ConfigService, | |
| ) { | |
| this.myUsers = [this.user1, this.user2]; | |
| } | |
| . . . |
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
| daily_sales = \ | |
| """Edith Mcbride ;,;$1.21 ;,; white ;,; | |
| 09/15/17 ,Herbert Tran ;,; $7.29;,; | |
| white&blue;,; 09/15/17 ,Paul Clarke ;,;$12.52 | |
| ;,; white&blue ;,; 09/15/17 ,Lucille Caldwell | |
| ;,; $5.13 ;,; white ;,; 09/15/17, | |
| Eduardo George ;,;$20.39;,; white&yellow | |
| ;,;09/15/17 , Danny Mclaughlin;,;$30.82;,; | |
| purple ;,;09/15/17 ,Stacy Vargas;,; $1.85 ;,; | |
| purple&yellow ;,;09/15/17, Shaun Brock;,; |
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 random | |
| print(""" | |
| /$$$$$$$ /$$ | |
| | $$__ $$ | $$ | |
| | $$ \ $$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$$ | |
| | $$$$$$$/ |____ $$ /$$_____/ /$$_____/| $$ | $$ | $$ /$$__ $$ /$$__ $$ /$$__ $$ | |
| | $$____/ /$$$$$$$| $$$$$$ | $$$$$$ | $$ | $$ | $$| $$ \ $$| $$ \__/| $$ | $$ | |
| | $$ /$$__ $$ \____ $$ \____ $$| $$ | $$ | $$| $$ | $$| $$ | $$ | $$ |
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
| tps://developers.google.com/drive/api/v3/quickstart/python | |
| from __future__ import print_function | |
| import pickle | |
| import os.path | |
| from googleapiclient.discovery import build | |
| from google_auth_oauthlib.flow import InstalledAppFlow | |
| from google.auth.transport.requests import Request | |
| # https://developers.google.com/analytics/devguides/config/mgmt/v3/quickstart/service-py | |
| from apiclient.discovery import build |
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
| require 'net/ssh' | |
| server = 'mem.sysarcana.com' | |
| user = 'root' | |
| pass = 'password' | |
| command = 'uptime' | |
| Net::SSH.start(server, user, :password => pass) do |session| | |
| stdout = '' | |
| stderr = '' |
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
| public class InMemoryProductRepository_Tests | |
| { | |
| private readonly IProductRepository _Service; | |
| public InMemoryProductRepository_Tests() | |
| { | |
| _Service = new InMemoryProductRepository(); | |
| } | |
| [Fact] |
NewerOlder