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
    
  
  
    
  | {"name":"noemi","settings":"{\"settings\":\"{\\n \\\"[python]\\\": {\\n \\\"editor.formatOnType\\\": true,\\n \\\"editor.defaultFormatter\\\": \\\"ms-python.python\\\"\\n },\\n \\\"window.menuBarVisibility\\\": \\\"toggle\\\",\\n \\\"editor.fontFamily\\\": \\\"'Lekton Nerd Font', 'FiraCode Nerd Font','Droid Sans Mono', 'monospace', monospace\\\",\\n \\\"editor.fontLigatures\\\": true,\\n \\\"editor.fontSize\\\": 16,\\n \\\"vim.useSystemClipboard\\\": true,\\n \\\"terminal.integrated.commandsToSkipShell\\\": [\\n \\\"terminal.integrated.commandsToSkipShell\\\"\\n ],\\n \\\"workbench.colorTheme\\\": \\\"Visual Studio Dark\\\",\\n \\\"editor.unicodeHighlight.invisibleCharacters\\\": false,\\n \\\"editor.unicodeHighlight.ambiguousCharacters\\\": false,\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"editor.wordWrap\\\": \\\"on\\\"\\n}\"}","keybindings":"{\"keybindings\":\"// Place your key bindings in this file to override the defaults\\n[\\n // T | 
  
    
      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
    
  
  
    
  | # Below are quick example | |
| # keep first duplicate row | |
| df2 = df.drop_duplicates() | |
| # Using DataFrame.drop_duplicates() to keep first duplicate row | |
| df2 = df.drop_duplicates(keep='first') | |
| # keep last duplicate row | |
| df2 = df.drop_duplicates( keep='last') | 
  
    
      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 pandas as pd | |
| import datetime as dt | |
| ventas = pd.read_csv("../tablas_cp/venta.csv") | |
| # print(ventas) | |
| ventas["Fecha"] = pd.to_datetime(ventas["Fecha"]) | 
  
    
      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
    
  
  
    
  | #![allow(unused)] | |
| fn main() { | |
| let rust = "Rust"; | |
| let popped = &rust[..rust.len() - 1]; | |
| println!("{}", popped); | |
| let poo = { | |
| let mut chars = rust.chars(); | |
| chars.next_back(); | 
  
    
      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
    
  
  
    
  | #!/bin/sh | |
| git add -A | |
| git commit -m "$1" | |
| git push origin --all | 
  
    
      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
    
  
  
    
  | mkdir src | |
| cd src | |
| mkdir components data pages validationSchemas | |
| touch theme.js | |
| touch ./components/Main.jsx | 
  
    
      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
    
  
  
    
  | npm install --save-dev babel-eslint eslint-config-standard eslit-config-standard-jsx eslint-config-standard-react eslint-plugin-promise eslint-plugin-import eslint-plugin-node eslint-plugin-react | 
  
    
      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
    
  
  
    
  | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |
| # Developer note: near.gitignore will be renamed to .gitignore upon project creation | |
| # dependencies | |
| node_modules | |
| /.pnp | |
| .pnp.js | |
| .parcel-cache | |
| # build | |
| /out | 
  
    
      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 near_sdk::borsh::{self, BorshDeserialize, BorshSerialize}; | |
| use near_sdk::{log, near_bindgen}; | |
| // Define the default message | |
| const DEFAULT_MESSAGE: &str = "Hello"; | |
| // Define the contract structure | |
| #[near_bindgen] | |
| #[derive(BorshDeserialize, BorshSerialize)] | |
| pub struct Contract { | 
NewerOlder