Snippets Collections
function Form() {

  return (
    <form>
      <label>
        Name:
        <input type="text" />
      </label>
      <button type="submit">Submit</button>
      <button type="button">Reset</button>
    </form>
  );
}

export default Form;


function Form() {
  const [inputValue, setInputValue] = useState('');

  const handleChange = (event) => {
    setInputValue(event.target.value);
  };

  return (
    <form>
      <label>
        Name:
        <input type="text" value={inputValue} onChange={handleChange} />
      </label>
      <button type="submit">Submit</button>
      <button type="button">Reset</button>
    </form>
  );
}

export default Form; 


// NOW ADDING FORM SUBMISSION BUTTON HANDLER AND RESET BUTTON HANDLER


function Form() {
  const [inputValue, setInputValue] = useState('');

  const handleChange = (event) => {
    setInputValue(event.target.value);
  };

  const handleSubmit = (event) => {
    event.preventDefault();
    console.log(inputValue);
  };
  
  const handleReset = () => {
    setInputValue("");
  };

  return (
    <form onSubmit={handleSubmit}>
      <label>
        Name:
        <input type="text" value={inputValue} onChange={handleChange} />
      </label>
      <button type="submit">Submit</button>
      <button onClick={handleReset} type="button">Reset</button>
    </form>
  );
}

export default Form; 
ReactDOM.render((
  <>
    <h2>Chats</h2>
    {chats.map((chat) => (
      <Chat
                key={chat.id}
                id={chat.id}
                name={chat.name}
                lastMessageAt={chat.lastMessageAt}
            />
    ))}
  </>
), document.querySelector('#root')); 
const uuid = () => {
  return Date.now().toString(36) + Math.random().toString(36).substr(2);
}

export default uuid;
--
-- Database: `libeanimation_animation_liberty`
--

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

--
-- Table structure for table `about_page`
--

CREATE TABLE `about_page` (
  `about_page_id` int(11) NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_desc` varchar(255) NOT NULL,
  `meta_robots` varchar(255) NOT NULL,
  `meta_keyword` varchar(255) NOT NULL,
  `section_banner_heading_text` longtext NOT NULL,
  `section_two_heading_text` longtext NOT NULL,
  `section_two_image` varchar(300) NOT NULL,
  `section_three_text` longtext NOT NULL,
  `about_page_status` tinyint(1) NOT NULL DEFAULT 0,
  `about_page_date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
function replaceURLTextWithLink(text) {
 
            // Put the URL to variable $1 after visiting the URL
            const Rexp =/((http|https|ftp):\/\/[\w?=&.\/-;#~%-]+(?![\w\s?&.\/;#~%"=-]*>))/g;
 
            // Replace the RegExp content by HTML element
            return text.replace(Rexp,
                "<a href='$1' target='_blank'>$1</a>");
}
import fiftyone as fo
from fiftyone.zoo import load_zoo_dataset

def download_vehicle_images():
    # Specify the classes of interest (e.g., vehicles, cars)
    classes_of_interest = ["Car", "Truck", "Motorcycle", "Bus", "Van"]

    # Specify the maximum number of samples you want to download
    max_samples = 100  # You can adjust this number as needed

    # Load the Open Images V7 dataset using FiftyOne
    dataset = load_zoo_dataset(
        "open-images-v7",
        split="validation",
        label_types=["detections", "segmentations", "points"],
        classes=classes_of_interest,
        max_samples=max_samples,
    )

    # Save the downloaded dataset
    dataset.export(export_dir="/path/to/save/vehicle/images")

if __name__ == "__main__":
    # Execute the download function
    download_vehicle_images()
Conversions happen within the booking confirmation page within the LightFrame. If they provide us with the google ads conversion code, we will inject the variables and add it to the dashboard. When the customer reaches the booking confirmation page, the code will fire and report information about the booking. Please note that this code will only fire on the booking confirmation page, so it will not fire prior to booking. We unfortunately are not able to redirect to a different page on your site, but even if we could, booking information would not be able to be transferred from the LightFrame to your site.



Client is asking "When a reservation is made from my website after they complete payment in the Fareharbor, what is the final URL the customer is directed to?"
Is there a way you can tell or support can tell too?

..
The booking confirmation page is within the lightframe. It has a dynamically generated URL but will always contain /booking. If they want to add conversion pixels to fire on the confirmation page, they will have to send it to us so we can add it to the dashboard

// an application that accesses a relational database with JDBC, you’ve probably configured Spring’s JdbcTemplate as a bean in the Spring application context
@Bean
public JdbcTemplate jdbcTemplate(DataSource dataSource) {
  return new JdbcTemplate(dataSource);
}

// configure a DataSource bean so that the dependency will be met
@Bean
public DataSource dataSource() {
  return new EmbeddedDatabaseBuilder()
          .setType(EmbeddedDatabaseType.H2)
          .addScripts('schema.sql', 'data.sql')
          .build();
}
{
  "kind": "EntityLinking",
  "parameters": {
    "modelVersion": "latest"
  },
  "analysisInput": {
    "documents": [
      {
        "id": "1",
        "language": "en",
        "text": "I saw Venus shining in the sky"
      }
    ]
  }
}




{
  "kind": "EntityLinkingResults",
  "results": {
    "documents": [
      {
        "id": "1",
        "entities": [
          {
            "bingId": "89253af3-5b63-e620-9227-f839138139f6",
            "name": "Venus",
            "matches": [
              {
                "text": "Venus",
                "offset": 6,
                "length": 5,
                "confidenceScore": 0.01
              }
            ],
            "language": "en",
            "id": "Venus",
            "url": "https://en.wikipedia.org/wiki/Venus",
            "dataSource": "Wikipedia"
          }
        ],
        "warnings": []
      }
    ],
    "errors": [],
    "modelVersion": "2021-06-01"
  }
}
{
  "kind": "EntityRecognition",
  "parameters": {
    "modelVersion": "latest"
  },
  "analysisInput": {
    "documents": [
      {
        "id": "1",
        "language": "en",
        "text": "Joe went to London on Saturday"
      }
    ]
  }
}


{
    "kind": "EntityRecognitionResults",
     "results": {
          "documents":[
              {
                  "entities":[
                  {
                    "text":"Joe",
                    "category":"Person",
                    "offset":0,
                    "length":3,
                    "confidenceScore":0.62
                  },
                  {
                    "text":"London",
                    "category":"Location",
                    "subcategory":"GPE",
                    "offset":12,
                    "length":6,
                    "confidenceScore":0.88
                  },
                  {
                    "text":"Saturday",
                    "category":"DateTime",
                    "subcategory":"Date",
                    "offset":22,
                    "length":8,
                    "confidenceScore":0.8
                  }
                ],
                "id":"1",
                "warnings":[]
              }
          ],
          "errors":[],
          "modelVersion":"2021-01-15"
    }
}
{
  "kind": "SentimentAnalysis",
  "parameters": {
    "modelVersion": "latest"
  },
  "analysisInput": {
    "documents": [
      {
        "id": "1",
        "language": "en",
        "text": "Good morning!"
      }
    ]
  }
}



{
  "kind": "SentimentAnalysisResults",
  "results": {
    "documents": [
      {
        "id": "1",
        "sentiment": "positive",
        "confidenceScores": {
          "positive": 0.89,
          "neutral": 0.1,
          "negative": 0.01
        },
        "sentences": [
          {
            "sentiment": "positive",
            "confidenceScores": {
              "positive": 0.89,
              "neutral": 0.1,
              "negative": 0.01
            },
            "offset": 0,
            "length": 13,
            "text": "Good morning!"
          }
        ],
        "warnings": []
      }
    ],
    "errors": [],
    "modelVersion": "2022-11-01"
  }
}
{
    "kind": "KeyPhraseExtraction",
    "parameters": {
        "modelVersion": "latest"
    },
    "analysisInput":{
        "documents":[
            {
              "id": "1",
              "language": "en",
              "text": "You must be the change you wish 
                       to see in the world."
            },
            {
              "id": "2",
              "language": "en",
              "text": "The journey of a thousand miles 
                       begins with a single step."
            }
        ]
    }
}


{
    "kind": "KeyPhraseExtractionResults",
    "results": {
    "documents": [   
        {
         "id": "1",
         "keyPhrases": [
           "change",
           "world"
         ],
         "warnings": []
       },
       {
         "id": "2",
         "keyPhrases": [
           "miles",
           "single step",
           "journey"
         ],
         "warnings": []
       }
],
    "errors": [],
    "modelVersion": "2021-06-01"
    }
}
{
    "kind": "LanguageDetection",
    "parameters": {
        "modelVersion": "latest"
    },
    "analysisInput":{
        "documents":[
              {
                "id": "1",
                "text": "Hello world",
                "countryHint": "US"
              },
              {
                "id": "2",
                "text": "Bonjour tout le monde"
              }
        ]
    }
}





{   "kind": "LanguageDetectionResults",
    "results": {
        "documents": [
          {
            "detectedLanguage": {
              "confidenceScore": 1,
              "iso6391Name": "en",
              "name": "English"
            },
            "id": "1",
            "warnings": []
          },
          {
            "detectedLanguage": {
              "confidenceScore": 1,
              "iso6391Name": "fr",
              "name": "French"
            },
            "id": "2",
            "warnings": []
          }
        ],
        "errors": [],
        "modelVersion": "2022-10-01"
    }
}




{
  "documents": [
    {
      "id": "1",
      "text": "Hello, I would like to take a class at your University. ¿Se ofrecen clases en español? Es mi primera lengua y más fácil para escribir. Que diriez-vous des cours en français?"
    }
  ]
}



{
    "documents": [
        {
            "id": "1",
            "detectedLanguage": {
                "name": "Spanish",
                "iso6391Name": "es",
                "confidenceScore": 0.9375
            },
            "warnings": []
        }
    ],
    "errors": [],
    "modelVersion": "2022-10-01"
}





{
    "documents": [
        {
            "id": "1",
            "detectedLanguage": {
                "name": "(Unknown)",
                "iso6391Name": "(Unknown)",
                "confidenceScore": 0.0
            },
            "warnings": []
        }
    ],
    "errors": [],
    "modelVersion": "2022-10-01"
}
//redirect
public function socialLogin()
    {
        return Socialite::driver('facebook')->redirect();
    }

//callback
public function handleProviderCallback()
    {
    
        try {

            $user = Socialite::driver('facebook')->user();

            $finduser = User::where('facebook_id', $user->id)->first();

            if($finduser){

                Auth::login($finduser);

                return redirect()->intended('/');

            }else{
                $newUser = User::create([
                    'name' => $user->name,
                    'email' => $user->email,
                    'facebook_id'=> $user->id,
                    'password' => encrypt('Test123456')
                ]);

                Auth::login($newUser);

                return redirect()->intended('/');
            }

        } catch (Exception $e) {
            dd($e->getMessage());
        }

    }
    
    
    
    //routes
Route::get('/login/facebook',[login::class,'socialLogin'])->name('redirectToFacebook');
Route::get('/login/facebook/callback',[login::class,'handleProviderCallback'])->name('callbackFacebook');

// config/services.php
'facebook' => [
        'client_id' => '', //Facebook API
        'client_secret' => '', //Facebook Secret
        'redirect' => '',//callback url
     ],
    
    //config/app.php
    
    
     'Socialite' => Laravel\Socialite\Facades\Socialite::class,  //aliases
             Laravel\Socialite\SocialiteServiceProvider::class,  //providers

    
    
C:\Program Files\NVIDIA Corporation\Display.NvContainer\plugins\LocalSystem\
> eval `ssh-agent`
> ssh-add /c/Users/roberto/.ssh/gitlab
print("\033[31m", "=======SUMMARY OF WHAT I'VE LEARNT TODAY=======" ,"\033[0m")
print("Adding colour to a text and the if statement")
print()
name = input("What's your name?:")
if name == "Robert":
 print("\033[33m" ,"Welcome and feel free to critique!" ,"\033[0m")
else:
 print("Great! You may have a look at things") 
print()
hobby = input("What's your favourite hobby?:")
if name == "Robert":
 print("""I am so sorry that  I did not write today's blog despite your clear instruction...
       I promise that I'll write it tommorow and I also need your clear instruction concerning some matters.
        For that reason I wish to call tommorow.""")
else:
 print("That's a great hobby you got there!")
print("\033[33m" ,"Thank you for your time and have a great day!" ,"\033[0m")
const http = require('http')
const fs = require('fs')
const path = require('path')

http.createServer((req, res) => {

    if(req.url === '/'){
        sendRes('index.html', 'text/html', res)
    }
    
    else if(/\uploads\/[^\/]+$/.test(req.url) && req.method === 'POST'){

    }
    
    else{
        sendRes(req.url, getContentType(req.url), res)
    }

}).listen(5000)

function getContentType (url){
    switch(path.extname(url)){
        case '.html':
            return 'text/html' 
        case '.css':
            return 'text/css'
        case '.js':
            return 'text/javascript'
        case 'json':
            return 'application.json'
        default: 
            return "application/octate-stream"
    }
}

function sendRes(url, contentType, res){
    let file = path.join(__dirname+'/static/', url)
    fs.readFile(file, (err, data) => {
        if(err){
            res.writeHead(404)
            res.write('Error')
            res.end()
            console.log('error 404')
        }
        else{
            res.writeHead(200, {'Content-Type': contentType})
            res.write(data)
            res.end()
        }
    })
}
Alcheny: The Business Incubator
1326 Barrington St
Hfx, B3J 1Z1
Trish Bishop, VP
Tel: 429-6600
Fax: 423-1528

All's Well Sales & Profits Boosting Company
2829 Agricola St
Hfx, B3K 4E5
James Henry, General Manager
Tel: 443-2213
Fax: 443-8160

Altamira Financial Services Ltd
1903 Barrington St
Hfx, B3J 3C7
Adele Chaisson, Manager
Tel: 496-9600
Fax: 429-0656

Bank Of Canada
1583 Hollis St
Hfx, B3J 1V4
Bob Dolomont, Senior Rep
Tel: 420-4600
Fax: 420-4644

Bank Of Montreal
5151 George St ,1st. Floor
Hfx, B3J 1M5
R.M Bisset,VP
Tel: 421-3402
Fax: 421-3410

Bank Of Nova Scotia
PO Box 2146
Hfx, B3J 3B7
Pierrette Barrie, Assistant GM
Tel: 420-3501
Fax: 422-8332

Better Business Bureau Of NS
188 Brunswick St, Suite 601
Hfx, B3J 3J8
Louis A.Gannon Jr, Executive Director
Tel: 422-6581
Fax: 429-6457

Business Department Bank Of Canada
PO Box 1656
Hfx, B3J 2Z7
Doug Artz, Assistant VP
Tel: 426-7850
Fax: 800 452-5531

CT Private Investment Counsel
1718 Argyle St
Suite 400
Hfx, B3J 3N6
Anne Campbell, Regional, President
Tel: 492-5707
Fax: 492-5324

Canad. Trust Co.
1718 Argyle St
Hfx, B3J 3N6
Tom Wheeler, Manager
Tel: 492-5352
Fax: 492-5321

Canada-Nova Scotia Offshore Petroleum Board
6th Floor 
1791 Barrington St
Hfx, B3J 3K9
J.E. Dickey , C.E.O
Tel: 422-5588
Fax: 422-1799

Canada Industrial Group Ltd
6173 Pepperell St
Hfx, B3H 2P1
Paul E. Vandall, Presidant
Tel: 422-0444


Canadian Bankers Association
1801 Hollis St
Suite 1000
Hfx, B3J 3N4
Tel: 423-3399
Fax: 429-5478

Canadian Soft Drink Association
1657 Barrington St
Suite 310
Hfx, B3J 2A1
Cella Farn, VP
Tel: 492-0900
Fax: 492-0090

Credit Union Atlantic
6080 Young St. Suite 800 
Hfx,B3J 2X1
John Blue, Manager
Tel: 492-6500
Fax: 492-6501

Downtown Business Commission
301-1668 Barrington St
Hfx, B3J 2A2
Kate Carmicheal, Director
Tel: 423-3841
Fax: 429-0865

Entrepeneur's Forum
1718 Argyle St. Suite 500
Hfx, B3J 3N6
Valerie Baker, Executive Director
TEL: 492-7600
FAX: 492-4141

HRDA Enterprises Ltd.
5571 Cunard St.
Hfx, B3K 1C5
Norman Mac Neil, CEO
TEL: 492-4713
FAX: 454-6231

HSBC Bank Canada
1801 Hollis St.
HFX, B3J 3N4
Steve Countway, Manager
Richard Dawson, Manager
TEL: 423-8352
FAX: 422-4071

Harrigan Financial Services Ltd.
1313 Barrington St. Suite 100
HFX, B3J 3P1
Lloyd Digdon, President
TEL: 422-2340
FAX: 422-0316

Himmelman Hicks Financial Advisors Inc.
1801 Hollis St. Suite 1220
HFX, B3J 3N4
Brian E. Himmelman, Managing Partner
TEL: 429-2410 Ext. 240
FAX: 423-4460

Industry Canada
PO Box 940 Stn M
1801 Hollis St.
HFX, B3J 2V9
David Mulcaster, Executive Director,
Atlantic Region
Christine Smith
TEL: 426-3458
FAX: 426-2615

Interact Barter Exchange
2586 Agricola St.
HFX, B3K 4C4
Tasso Dikaios, Owner
TEL: 425-4600
FAX: 422-1199

Kornova Trading & Investments
1800 Argyle St. Suite 808
HFX, B3J 3N8
Chang Kang, President
TEL: 428-9178
FAX: 423-2527

Pulse Marketing 
1701 Hollis St. Suite L108
Hfx, B3J 3M8
Bill Murphy, Partner
Tel: 421-1500
Fax: 425-5719

TD Bank 1791 Barrington St
Hfx, B3J 2V2
Bern Pelley, Manager
Tel: 420-8007
Fax: 420-8154

/** Macros in FlexSim*/
/*By writing the root of a macro: the root is the basic part of the macro name and it carries its foundmental meaning*/

// list of macros in flexsim 

// 1. DATATYPE root
DATATYPE_NUMBER

// 2. STAT root
STAT_OUTPUT

//3. STATE root
STATE_BLOCKED

//4. photo eye PE root
PE_STATE_BLOCKED

// 5. 
{
  "entityName": "PEN5",
  "glxAccount": "1000100",
  "accountType": "Asset Account",
  "description": "Testing transfer"
  
}
  ?cmp=shc&mi=systablebrowser&tablename=NW_VendorRegUpdate

NW_PurchReqTableForNew
NW_RFQEvaluationEvaluatorNew
NW_RFQEvaluationRequesterNew
PurchRFQCaseTableForNew
  NW_ApproveBlacklistSupplierNew
  
   
  NW_receivingServiceRequest
  NW_RFQEvaluationEvaluatorEdit
  NW_InvoicePORequestNew
  NW_InvoiceServiceRequest
  NW_ApproveBlacklistSupplierNew
  
  NW_SupplierAssessmentApprovalStage
  NW_SupplierAssessmentApprovalStageEdit
  
  NW_SupplierAssessmentEvaluatorsStage
  NW_SupplierAssessmentEvaluatorsStageEdit
  
  NW_VendRegUpdateDlgEdit
  NW_SelectEvaluators
  NW_VendorReg
  
  getContractSigning
getContractCancelation
getContractChange
getContractRenewal
https://usnconeboxax1aos.cloud.onebox.dynamics.com/api/services/NW_ContarctServiceGroup/NW_ContractRequestService/getContractClosure

[
    {
        "$id": "1",
        "RemarksForContractualobligation": "",
        "RemarksForOverAllRemarks": "",
        "RemarksForVendorQuotation": "",
        "RemarksForAccurateInvoice": "",
        "RemarksForVendorFlexbility": "",
        "RemarksForQualityMaintenance": "",
        "RemarksForQualityLevel": "",
        "RemarksForRecommendations": "",
        "Recommendations": "",
        "AddionalComments": "",
        "OverAllRemarks": "",
        "VendorQuotationCost": "",
        "AccurateInvoice": "",
        "VedorFlexibility": "",
        "QualityMaintenance": "",
        "ContractualobligationTime": "",
        "QualityLevel": "",
        "InstructionsLevels": "",
        "RequestID": "SHC-000026",
        "PurchId": "SHC-000004",
        "Employee": "Test",
        "EmployeeNo": "000274",
        "Title": "Analyst",
        "RequestDate": "2023-10-24T12:00:00"
    },
  .
  .
  .

<Domain>/api/services/NW_ProcurmentcycleStages/NW_ProcurmentCycleStages/GetProcStages
<Domain>/api/services/NW_ProcurementSummaryServiceGroup/NW_ProcurementSummaryService/ProcSummary

https://erpdax.wordpress.com/tag/ranges-with-x/

int selectedMenu;
real test;
formrun fr;
Args ag;
Itemname strtext;
querybuilddataSource qb1;
queryrun qr;
query q;
PopupMenu menu = new PopupMenu(element.hWnd());
int a = menu.insertItem('Find');
int b = menu.insertItem('Filter');
int c = menu.insertItem('Remove Filter');
 
selectedMenu = menu.draw();
 
switch (selectedMenu)
{
case -1:
break;
 
case a:
ag = new args('SysformSearch');
fr = new formrun(ag);
fr.run();
fr.wait();
strtext = fr.design().controlName('FindEdit').valueStr();
if(strtext)
{
q = inventSum_Ds.query();
qb1 =q.dataSourceTable(tablenum(InventSum));
QB1.addRange(FieldNum(InventSum,PhysicalInvent)).value(SySQuery::value(strtext));
INVENTSUM_DS.query(Q);
INVENTSUM_ds.executeQuery();
}
break;
 
case b:
InventSum_DS.filter(FieldNum(InventSum,PhysicalInvent),Sysquery::value(InventSum.physicalInventUnit()));
break;
 
case c :
InventSum_DS.removeFilter();
break;
 
Default:
break;
}
class NW_PurchaseOrderReportController extends SrsReportRunController
{
    /// <summary>
    /// Override this method to change the report contract before you run the report.
    /// </summary>
    protected void preRunModifyContract()
    {
        NW_GeneralContract        contract;
    
        PurchTable PurchTable;
    
        if(!this.parmArgs().record())
        {
            throw error("@SYS26348");
        }
        else
        {
            PurchTable = this.parmArgs().record();
        }
    
        if (PurchTable)
        {
            contract = this.parmReportContract().parmRdpContract() as NW_GeneralContract;
    
            if (PurchTable)
            {
                contract.parmRecordId(PurchTable.RecId);
    
            }
        }
    }

    public static NW_PurchaseOrderReportController construct()
    {
        return new NW_PurchaseOrderReportController();
    }

    public static void main(Args _args)
    {
        PurchTable PurchTable;
    
        SrsReportRunController controller  = NW_PurchaseOrderReportController::construct();
    
        PurchTable=_args.record();
    
        controller.parmArgs(_args);
    
        if(PurchTable.DocumentState==VersioningDocumentState::Confirmed)
        {
            controller.parmReportName(ssrsReportStr(NW_PurchaseOrderReport, PrecisionDesign1));
    
            controller.parmShowDialog(false);
            controller.startOperation();
        }

        else
        {
            error("The Purchase Order is not confirmed");
        }
       
    
    
    }

}
https://filetransfer.io/data-package/iTXxAmr1#link
# Before you run the Python code snippet below, run the following command:
# pip install roboflow autodistill autodistill_grounded_sam scikit-learn

from autodistill_grounded_sam import GroundedSAM
from autodistill.detection import CaptionOntology
from autodistill.helpers import sync_with_roboflow

BOX_THRESHOLD = 0.75
CAPTION_ONTOLOGY = {
    "0": "0",
    "1": "1",
    "5": "5",
    "green_car": "green_car",
    "gray_car": "gray_car",
    "Dent": "Dent",
    "scratch": "scratch",
    "red_car": "red_car",
    "undefined": "undefined",
    "yellow_car": "yellow_car",
    "Scratch": "Scratch",
    "blue_car": "blue_car",
    "white_car": "white_car",
    "black_car": "black_car"
}
TEXT_THRESHOLD = 0.70

model = GroundedSAM(
    ontology=CaptionOntology(CAPTION_ONTOLOGY),
    box_threshold=BOX_THRESHOLD,
    text_threshold=TEXT_THRESHOLD,
)

sync_with_roboflow(
    workspace_id="ofg8aFKE2OOmwddkN81tXUntmPr1",
    workspace_url="myassistant",
    project_id = "imperfections",
    batch_id = "aAre0tKc5Ja3ggoUkfda",
    model = model
)
#include <stdio.h>
#include <dos.h>
#include <conio.h>



int main()
{
    float sales, salary;
    clrscr();
    
    gotoxy(22, 10);
    printf("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
    gotoxy(22, 11);
    printf("X                                 X");
    gotoxy(22, 12);
    printf("X                                 X");
    gotoxy(22, 13);
    printf("X                                 X");
    gotoxy(22, 14);
    printf("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
    
    gotoxy(25, 11);
    printf("Enter sales in dollars: ");
    scanf("%f", &sales);

    salary = 200 + (sales * .09);
    
    gotoxy(25, 12);
    printf("Salary is: %.2f", salary);
    
    getch();
    return 0;
}
#include <stdio.h>
#include <dos.h>
#include <conio.h>
 
int main()
{
 
   float bal, charge, cred, limit, account, newbal;
   clrscr();
  
   gotoxy(20, 2);
   printf("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
   gotoxy(20, 3);
   printf("X                                       X");
   gotoxy(20, 4);
   printf("X                                       X");
   gotoxy(20, 5);
   printf("X                                       X");
   gotoxy(20, 6);
   printf("X                                       X");
   gotoxy(20, 7);
   printf("X                                       X");
   gotoxy(20, 8);
   printf("X                                       X");
   gotoxy(20, 9);
   printf("X                                       X");
   gotoxy(20, 10);
   printf("X                                       X");
   gotoxy(20, 11);
   printf("X                                       X");
   gotoxy(20, 12);
   printf("X                                       X");
   gotoxy(20, 13);
   printf("X                                       X");
   gotoxy(20, 14);
   printf("X                                       X");
   gotoxy(20, 15);
   printf("X                                       X");
   gotoxy(20, 16);
   printf("X                                       X");
   gotoxy(20, 17);
   printf("X                                       X");
   gotoxy(20, 18);
   printf("X                                       X");
   gotoxy(20, 19);
   printf("X                                       X");
   gotoxy(20, 20);
   printf("X                                       X");
   gotoxy(20, 21);
   printf("X                                       X");
   gotoxy(20, 22);
   printf("X                                       X");
   gotoxy(20, 22);
   printf("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");


  
  
  
  gotoxy(26, 5);
   printf("Enter beginning balance:");
   scanf("%f", &bal);
  
   gotoxy(29, 7);
   printf("Enter total charge:");
   scanf("%f", &charge);
  
   gotoxy(28, 9);
   printf("Enter total credits:");
   scanf("%f", &cred);
  
   gotoxy(29, 11);
   printf("Enter credit limit:");
   scanf("%f", &limit);
  
   gotoxy(34, 13);
   printf("Account:");
   scanf("%f", &account);
  
  
   newbal=bal+charge-cred;
 
   gotoxy(30, 15);
   printf("Credit limit: %.2f\n", limit);
  
   gotoxy(34, 17);
   printf("Balance: %.2f\n", newbal);
  
   gotoxy(28, 19);
   (newbal>limit)? printf("Credit Limit Exceeded"): printf("Credit Limit not Exceeded");
  
  

   getch();
   return 0;
}
���
���
(
���
+
1
)
=
∑
���
∈
���
���
���
ℎ
���

ℎ
���
(
���
+
1
)
=
GRU
(
���
���
(
���
+
1
)
,
ℎ
���
(
���
)
)
using System;
using System.Linq;


public class Kata
{
  public static int PositiveSum(int[] arr)
  {
    return arr.Where(x => x > 0).Sum();
  }
}
import cProfile

# Use `profile` if `cProfile` isn't available on your OS
# import profile


def adder(x, y):
	return x + y


cProfile.run('adder(10, 20)')
import timeit


def adder(x, y):
	return x + y


t = timeit.Timer(setup='from __main__ import adder', stmt='adder(10, 20)')
t.timeit()
function MyPage() {
  const [theme, setTheme] = useState('dark');
  return (
    <ThemeContext.Provider value={theme}>
      <Form />
      <Button onClick={() => {
        setTheme('light');
      }}>
        Switch to light theme
      </Button>
    </ThemeContext.Provider>
  );
}
SELECT DISTINCT  V1.SKU AS SKU, V2.DESCR AS ItemName, SUM(V1.SHIPPEDQTY) 
FROM SCE.vw_ORDERDETAIL_1 V1
INNER JOIN SCE.vw_SKU V2 ON V1.SKU = V2.SKU 
WHERE V1.ACTUALSHIPDATE BETWEEN '2024-01-01 00:00:00' AND GETDATE()
GROUP BY v1.SKU, V2.DESCR
HAVING SUM(V1.SHIPPEDQTY) > 0
#!/bin/bash

# install the EPEL repo to access Redis
yum install -y epel-release
yum install -y redis

# fix redis background saves on low memory
sysctl vm.overcommit_memory=1 && cat <<SYSCTL_MEM > /etc/sysctl.d/88-vm.overcommit_memory.conf
vm.overcommit_memory = 1
SYSCTL_MEM

# increase max connections
sysctl -w net.core.somaxconn=65535 && cat <<SYSCTL_CONN > /etc/sysctl.d/88-net.core.somaxconn.conf
net.core.somaxconn = 65535
SYSCTL_CONN

sysctl -w fs.file-max=100000 && cat <<SYSCTL_FILEMAX > /etc/sysctl.d/88-fs.file-max.conf
fs.file-max = 100000
SYSCTL_FILEMAX

sed -i "s|^tcp-backlog [[:digit:]]\+|tcp-backlog 65535|" /etc/redis.conf

# enable redis service on reboot
systemctl enable redis

# start service
(service redis status > /dev/null && service redis restart) || service redis start
#!/bin/bash

# make sure the SRC_NODE_VERSION is set
if [[ -z $SRC_NODE_VERSION ]]; then
  echo "You must specify a node version using \$SRC_NODE_VERSION";
else
  # Select node version to install
  curl --silent --location https://rpm.nodesource.com/setup_$SRC_NODE_VERSION.x | bash -
  
  # install via yum
  yum install -y git gcc-c++ make nodejs
fi

# PM2 - install as global
npm install pm2@latest -g
print("THE ULTIMATE BLAND RICE RECIPE GENERATOR")
print("Answer the few questions given below to create a perfect recipe for you")
name = input("What's your name?")
step = input("What's the necessary step required before you start cooking the rice (answer in one word)?")
ratio = input("The ratio of water to rice should be_____for the rice to be cooked perfectly")
utensil = input("What's your prefered utensil for rice cooking?:")
minutes = input("How long should the rice be cooked for?(Answer in minutes)")
serve = input("What would you serve the rice with?")
print(name, "thinks that in order to cook rice you need to first" ,step, "it" ,"You should then add water and rice in the ratio of" ,ratio, "into a", utensil, "and allow it to cook for" ,minutes, "After that you should serve the rice with" ,serve,)
print("You" ,name, "should be prepared to eat alone😂.")
print()
print("Thank you for rolling out with this programme😁")
import './style.css';
import React, { useState } from 'react';
import Nav from './components/nav/Nav';
import Filter01 from './components/Filters/Filter01/Filter01';
import Filter02 from './components/Filters/Filter02/Filter02';
import DateFilter from './components/Filters/datafilter/DateFilter';
import Filter04 from './components/Filters/Filter04/Filter04';
import Filter05 from './components/Filters/Filter05/Filter05';
import MyTable from './components/chart/MyTable';

function App() {
  const [filter01, setFilter01] = useState('');
  const [filtersSubmitted, setFiltersSubmitted] = useState(false);

  const handleFilterSubmit = () => {
    setFiltersSubmitted(true);
  };

  return (
    <>
      {/* ... (other components remain unchanged) */}
      <Filter01 setFilterValue={(value) => setFilter01(value)} />
      <button onClick={handleFilterSubmit}>Submit Filters</button>
      <MyTable filterValues={{ filter01 }} filtersSubmitted={filtersSubmitted} />
      
    </>
  );
}

export default App;
/**Reference and Control the conveyor item from the script*/
Conveyor conveyor = Model.find("DP23").as(Conveyor.DecisionPoint).conveyor;
Object enteringItem = Model.find("DP23").as(Conveyor.DecisionPoint).activeItem;
Conveyor.Item conveyorItem = conveyor.itemData[enteringItem];
applicationcommand("showconsole", CONSOLE_OUTPUT);
clearconsole;

// conveyor item properites
print(conveyorItem.entrySpace);
print(conveyorItem.movingSpace);
print(conveyorItem.currentDistance);
print(conveyorItem.destination);
print(conveyorItem.position);
print(conveyorItem.totalDistance);

// conveyor item methods=
conveyorItem.turn();
conveyorItem.stop();
conveyorItem.resume();
print("""Hello! Welcome and for today , we would like to know you more...if you don't mind that is😁""")
mind = input("Do you mind?")
name = input("What's your name?:")
print("Wow! That's a cool name you got there!")
eyecolour = input("What's your eye colour?:")
print("Too common😂")
food = input("What's your favourite meal?:")
print()
print("So you're" , name, "with " , eyecolour, "eyes and you're probably hungry for" , food, "right now." )
input("Is that correct?")
print("")
print("Thank you for your time and have a nice day!")
>>> import datetime
>>> datetime.date(2010, 6, 16).strftime("%V")
'24'
output = [json.dumps(json_output, indent=2)]
def rss_parser(
        xml: str,
        limit: Optional[int] = None,
        json_format: bool = False,
) -> str:
class Msg
{
    public void Show(String name)
    {
        ;;;;; // 100 line code

        synchronized(this)
        {
            for(int i = 1; i <= 3; i++)
            {
                System.out.println("how are you " + name);
            }
        }
        ;;;;; // 100 line code
    }
}

class Ourthread extends Thread
{
    Msg m;
    String name;

    Ourthread(Msg m, String name)
    {
        this.m = m;
        this.name = name;
    }

    public void run()
    {
        m.Show(name);
    }
}

class Death
{
    public static void main(String[] args)
    {
        Msg msg = new Msg(); // Create an instance of the Msg class
        Ourthread t1 = new Ourthread(msg, "om");
        Ourthread t2 = new Ourthread(msg, "harry");

        t1.start();
        t2.start();
    }
}
import React, { useEffect, useState } from 'react';

const MyTable = ({ intradata }) => {
  const [data, setData] = useState(null);
  const [selectedGroup, setSelectedGroup] = useState('summary');
  const [loading, setLoading] = useState(true);
  const [error, setError] = useState(null);
  const [columns, setColumns] = useState([]);

  useEffect(() => {
    const fetchData = async () => {
      try {
        const response = await fetch('http://5.34.198.87:8000/api/options/intradatacols');

        if (!response.ok) {
          throw new Error(`HTTP error! Status: ${response.status}`);
        }

        const contentType = response.headers.get('content-type');
        if (!contentType || !contentType.includes('application/json')) {
          throw new Error('Invalid content type. Expected JSON.');
        }

        const jsonData = await response.json();
        console.log('API Response for intradatacols:', jsonData);
        setData(jsonData);

        const validGroups = Object.keys(jsonData.groups);
        const initialColumns = jsonData.groupscolumn[selectedGroup] || [];
        setColumns(initialColumns);

        if (!validGroups.includes(selectedGroup)) {
          console.error(`Invalid selectedGroup: ${selectedGroup}`);
          return;
        }
      } catch (error) {
        console.error('Error fetching data:', error);
        setError(error.message || 'An error occurred while fetching data.');
      } finally {
        setLoading(false);
      }
    };

    fetchData();
  }, [selectedGroup]);

  useEffect(() => {
    console.log('intradata:', intradata);
    console.log('columns:', columns);
    console.log('data:', data);
  }, [intradata, columns, data]);

  if (loading) {
    return <div>Loading...</div>;
  }

  if (error) {
    return <div>Error: {error}</div>;
  }

  if (!data || !data.groups || !data.groupscolumn) {
    return <div>No data available</div>;
  }

  const validGroups = Object.keys(data.groups);

  if (!validGroups.includes(selectedGroup)) {
    console.error(`Invalid selectedGroup: ${selectedGroup}`);
    return <div>No data available</div>;
  }

  return (
    <div className="container mt-4">
      <div className="btn-group mb-3">
        {validGroups.map((groupKey) => (
          <button
            key={groupKey}
            type="button"
            className={`btn ${selectedGroup === groupKey ? 'btn-primary' : 'btn-secondary'}`}
            onClick={() => setSelectedGroup(groupKey)}
          >
            {data.groups[groupKey]}
          </button>
        ))}
      </div>

      <div className="table-container" style={{ overflowY: 'auto', maxHeight: '500px' }}>
        <table className="table table-bordered table-striped">
          <thead className="thead-dark">
            <tr>
              {columns.map((column, index) => (
                <th key={index}>{data.fields[column]}</th>
              ))}
            </tr>
          </thead>
          <tbody>
            {intradata && Array.isArray(intradata) ? (
              intradata.map((item, itemIndex) => (
                <tr key={itemIndex}>
                  {columns.map((column, columnIndex) => (
                    <td key={columnIndex}>{item[column]}</td>
                  ))}
                </tr>
              ))
            ) : (
              <tr>
                <td colSpan={columns.length}>{intradata === null ? 'Loading...' : 'No data available'}</td>
              </tr>
            )}
          </tbody>
        </table>
      </div>
    </div>
  );
};

export default MyTable;




import React, { useEffect, useState } from 'react';
import MyTable from './MyTable';

const DataTableFetcher = () => {
  const [intradata, setIntradata] = useState(null);
  const [loading, setLoading] = useState(true);
  const [error, setError] = useState(null);

  useEffect(() => {
    const fetchData = async () => {
      try {
        const response = await fetch('http://5.34.198.87:8000/api/options/intradata');

        if (!response.ok) {
          throw new Error(`HTTP error! Status: ${response.status}`);
        }

        const contentType = response.headers.get('content-type');
        if (!contentType || !contentType.includes('application/json')) {
          throw new Error('Invalid content type. Expected JSON.');
        }

        const jsonData = await response.json();
        console.log('API Response:', jsonData);
        setIntradata(jsonData.data);
      } catch (error) {
        console.error('Error fetching intradata:', error);
        setError(error.message || 'An error occurred while fetching intradata.');
      } finally {
        setLoading(false);
      }
    };

    fetchData();
  }, []);

  if (loading) {
    return <div>Loading...</div>;
  }

  if (error) {
    return <div>Error: {error}</div>;
  }

  return <MyTable intradata={intradata} />;
};

export default DataTableFetcher;
curl --request POST \
  --url https://{{your-gtm-ss-url}}/com.snowplowanalytics.snowplow/enriched \
  --header 'Content-Type: application/json' \
  --header 'x-gtm-server-preview: {{your-preview-header}}' \
  --data '{
  "app_id": "example-website",
  "platform": "web",
  "etl_tstamp": "2021-11-26T00:01:25.292Z",
  "collector_tstamp": "2021-11-20T00:02:05Z",
  "dvce_created_tstamp": "2021-11-20T00:03:57.885Z",
  "event": "unstruct",
  "event_id": "c6ef3124-b53a-4b13-a233-0088f79dcbcb",
  "txn_id": null,
  "name_tracker": "sp1",
  "v_tracker": "js-3.1.6",
  "v_collector": "ssc-2.3.0-stdout$",
  "v_etl": "snowplow-micro-1.1.2-common-2.0.1",
  "user_id": "jon.doe@email.com",
  "user_ipaddress": "92.231.54.234",
  "user_fingerprint": null,
  "domain_userid": "de81d764-990c-4fdc-a37e-adf526909ea6",
  "domain_sessionidx": 3,
  "network_userid": "ecdff4d0-9175-40ac-a8bb-325c49733607",
  "geo_country": "US",
  "geo_region": "CA",
  "geo_city": "San Francisco",
  "geo_zipcode": "94109",
  "geo_latitude": 37.443604,
  "geo_longitude": -122.4124,
  "geo_location": "37.443604,-122.4124",
  "geo_region_name": "San Francisco",
  "ip_isp": "AT&T",
  "ip_organization": "AT&T",
  "ip_domain": "att.com",
  "ip_netspeed": "Cable/DSL",
  "page_url": "https://snowplowanalytics.com/use-cases/",
  "page_title": "Snowplow Analytics",
  "page_referrer": null,
  "page_urlscheme": "https",
  "page_urlhost": "snowplowanalytics.com",
  "page_urlport": 443,
  "page_urlpath": "/use-cases/",
  "page_urlquery": "",
  "page_urlfragment": "",
  "refr_urlscheme": null,
  "refr_urlhost": null,
  "refr_urlport": null,
  "refr_urlpath": null,
  "refr_urlquery": null,
  "refr_urlfragment": null,
  "refr_medium": null,
  "refr_source": null,
  "refr_term": null,
  "mkt_medium": null,
  "mkt_source": null,
  "mkt_term": null,
  "mkt_content": null,
  "mkt_campaign": null,
  "contexts_org_w3_performance_timing_1": [
    {
      "navigationStart": 1415358089861,
      "unloadEventStart": 1415358090270,
      "unloadEventEnd": 1415358090287,
      "redirectStart": 0,
      "redirectEnd": 0,
      "fetchStart": 1415358089870,
      "domainLookupStart": 1415358090102,
      "domainLookupEnd": 1415358090102,
      "connectStart": 1415358090103,
      "connectEnd": 1415358090183,
      "requestStart": 1415358090183,
      "responseStart": 1415358090265,
      "responseEnd": 1415358090265,
      "domLoading": 1415358090270,
      "domInteractive": 1415358090886,
      "domContentLoadedEventStart": 1415358090968,
      "domContentLoadedEventEnd": 1415358091309,
      "domComplete": 0,
      "loadEventStart": 0,
      "loadEventEnd": 0
    }
  ],
  "se_category": null,
  "se_action": null,
  "se_label": null,
  "se_property": null,
  "se_value": null,
  "unstruct_event_com_snowplowanalytics_snowplow_link_click_1": {
    "targetUrl": "http://www.example.com",
    "elementClasses": [
      "foreground"
    ],
    "elementId": "exampleLink"
  },
  "tr_orderid": null,
  "tr_affiliation": null,
  "tr_total": null,
  "tr_tax": null,
  "tr_shipping": null,
  "tr_city": null,
  "tr_state": null,
  "tr_country": null,
  "ti_orderid": null,
  "ti_sku": null,
  "ti_name": null,
  "ti_category": null,
  "ti_price": null,
  "ti_quantity": null,
  "pp_xoffset_min": null,
  "pp_xoffset_max": null,
  "pp_yoffset_min": null,
  "pp_yoffset_max": null,
  "useragent": null,
  "br_name": null,
  "br_family": null,
  "br_version": null,
  "br_type": null,
  "br_renderengine": null,
  "br_lang": null,
  "br_features_pdf": true,
  "br_features_flash": false,
  "br_features_java": null,
  "br_features_director": null,
  "br_features_quicktime": null,
  "br_features_realplayer": null,
  "br_features_windowsmedia": null,
  "br_features_gears": null,
  "br_features_silverlight": null,
  "br_cookies": null,
  "br_colordepth": null,
  "br_viewwidth": null,
  "br_viewheight": null,
  "os_name": null,
  "os_family": null,
  "os_manufacturer": null,
  "os_timezone": null,
  "dvce_type": null,
  "dvce_ismobile": null,
  "dvce_screenwidth": null,
  "dvce_screenheight": null,
  "doc_charset": null,
  "doc_width": null,
  "doc_height": null,
  "tr_currency": null,
  "tr_total_base": null,
  "tr_tax_base": null,
  "tr_shipping_base": null,
  "ti_currency": null,
  "ti_price_base": null,
  "base_currency": null,
  "geo_timezone": null,
  "mkt_clickid": null,
  "mkt_network": null,
  "etl_tags": null,
  "dvce_sent_tstamp": null,
  "refr_domain_userid": null,
  "refr_dvce_tstamp": null,
  "contexts_com_snowplowanalytics_snowplow_ua_parser_context_1": [
    {
      "useragentFamily": "IE",
      "useragentMajor": "7",
      "useragentMinor": "0",
      "useragentPatch": null,
      "useragentVersion": "IE 7.0",
      "osFamily": "Windows XP",
      "osMajor": null,
      "osMinor": null,
      "osPatch": null,
      "osPatchMinor": null,
      "osVersion": "Windows XP",
      "deviceFamily": "Other"
    }
  ],
  "domain_sessionid": "2b15e5c8-d3b1-11e4-b9d6-1681e6b88ec1",
  "derived_tstamp": "2021-11-20T00:03:57.886Z",
  "event_vendor": "com.snowplowanalytics.snowplow",
  "event_name": "link_click",
  "event_format": "jsonschema",
  "event_version": "1-0-0",
  "event_fingerprint": "e3dbfa9cca0412c3d4052863cefb547f",
  "true_tstamp": "2021-11-20T00:03:57.886Z"
}'
import React, { useEffect, useState } from 'react';

const MyTable = () => {
  const [data, setData] = useState(null);
  const [selectedGroup, setSelectedGroup] = useState('summary');
  const [loading, setLoading] = useState(true);
  const [error, setError] = useState(null);

  useEffect(() => {
    const fetchData = async () => {
      try {
        const response = await fetch('http://5.34.198.87:8000/api/options/intradatacols');

        if (!response.ok) {
          throw new Error(`HTTP error! Status: ${response.status}`);
        }

        const contentType = response.headers.get('content-type');
        if (!contentType || !contentType.includes('application/json')) {
          throw new Error('Invalid content type. Expected JSON.');
        }

        const jsonData = await response.json();
        console.log(jsonData);
        setData(jsonData);
      } catch (error) {
        console.error('Error fetching data:', error);
        setError(error.message || 'An error occurred while fetching data.');
      } finally {
        setLoading(false);
      }
    };

    fetchData();
  }, []);

  if (loading) {
    return <div>Loading...</div>;
  }

  if (error) {
    return <div>Error: {error}</div>;
  }

  if (!data || !data.groups || !data.groupscolumn) {
    return <div>No data available</div>;
  }

  const validGroups = Object.keys(data.groups);

  if (!validGroups.includes(selectedGroup)) {
    console.error(`Invalid selectedGroup: ${selectedGroup}`);
    return <div>No data available</div>;
  }

  const columns = data.groupscolumn[selectedGroup] || [];
  const groupData = data[selectedGroup] || {};

  return (
    <div className="container mt-4">
      <div className="btn-group mb-3">
        {validGroups.map((groupKey) => (
          <button
            key={groupKey}
            type="button"
            className={`btn ${selectedGroup === groupKey ? 'btn-primary' : 'btn-secondary'}`}
            onClick={() => setSelectedGroup(groupKey)}
          >
            {data.groups[groupKey]}
          </button>
        ))}
      </div>

      <div className="table-container" style={{ overflowY: 'auto', maxHeight: '500px' }}>
        <table className="table table-bordered table-striped">
          {/* Table headers */}
          <thead className="thead-dark">
            <tr>
              {columns.map((column, index) => (
                <th key={index}>{data.fields[column]}</th>
              ))}
            </tr>
          </thead>
          {/* Table body */}
          <tbody>
            {Object.values(groupData).map((group, groupIndex) => (
              <tr key={groupIndex}>
                {Array.isArray(group) ? (
                  group.map((item, itemIndex) => (
                    <td key={itemIndex}>{item}</td>
                  ))
                ) : (
                  <td>{group}</td>
                )}
              </tr>
            ))}
          </tbody>
        </table>
      </div>
    </div>
  );
};

export default MyTable;
star

Sat Jan 27 2024 18:00:23 GMT+0000 (Coordinated Universal Time) https://tripleten.com/trainer/web/lesson/208423d5-830e-43fe-a2cd-b409bfe77455/task/1dfb3e8a-bac0-4598-a24c-c326da7d9ed3/

@Marcelluki

star

Sat Jan 27 2024 17:47:13 GMT+0000 (Coordinated Universal Time) https://tripleten.com/trainer/web/lesson/21ecf940-5637-4fdc-89c6-ae88bbe72436/task/fe8a0b8f-4dfe-41ec-b7b0-56a7586e5fba/

@Marcelluki

star

Sat Jan 27 2024 01:36:58 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #uuid #number

star

Fri Jan 26 2024 21:41:16 GMT+0000 (Coordinated Universal Time) https://custom.projects-delivery.com:2083/cpsess5892537478/3rdparty/phpMyAdmin/index.php?route

@hamza.khan

star

Fri Jan 26 2024 18:02:01 GMT+0000 (Coordinated Universal Time)

@marcopinero #javascript

star

Fri Jan 26 2024 16:55:20 GMT+0000 (Coordinated Universal Time) https://storage.googleapis.com/openimages/web/download_v7.html

@odaat_detailer #python

star

Fri Jan 26 2024 16:05:19 GMT+0000 (Coordinated Universal Time) https://leetcode.com/problems/max-consecutive-ones/description/

@msagr

star

Fri Jan 26 2024 09:06:07 GMT+0000 (Coordinated Universal Time)

@Shira

star

Fri Jan 26 2024 06:44:32 GMT+0000 (Coordinated Universal Time)

@KhanhDu #springframework

star

Fri Jan 26 2024 04:48:20 GMT+0000 (Coordinated Universal Time)

@shreekrishna

star

Fri Jan 26 2024 04:46:39 GMT+0000 (Coordinated Universal Time)

@shreekrishna

star

Fri Jan 26 2024 04:42:47 GMT+0000 (Coordinated Universal Time)

@shreekrishna

star

Fri Jan 26 2024 04:40:08 GMT+0000 (Coordinated Universal Time)

@shreekrishna

star

Fri Jan 26 2024 04:36:20 GMT+0000 (Coordinated Universal Time)

@shreekrishna

star

Thu Jan 25 2024 20:52:19 GMT+0000 (Coordinated Universal Time)

@hamzaliaqat

star

Thu Jan 25 2024 18:35:21 GMT+0000 (Coordinated Universal Time) https://www.makeuseof.com/windows-nvidia-container-high-cpu/

@ckfeltman

star

Thu Jan 25 2024 18:19:15 GMT+0000 (Coordinated Universal Time)

@RobertoSilvaZ #ssh #git #github #gitlab

star

Thu Jan 25 2024 18:03:14 GMT+0000 (Coordinated Universal Time)

@Realencoder

star

Thu Jan 25 2024 17:21:36 GMT+0000 (Coordinated Universal Time)

@Pirizok

star

Thu Jan 25 2024 16:19:38 GMT+0000 (Coordinated Universal Time) http://www.chebucto.ns.ca/NorthBranch/market.html

@etg1

star

Thu Jan 25 2024 14:32:42 GMT+0000 (Coordinated Universal Time)

@FlexSimGeek #flexscript

star

Thu Jan 25 2024 13:31:20 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Thu Jan 25 2024 11:24:30 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Thu Jan 25 2024 09:35:25 GMT+0000 (Coordinated Universal Time) https://masterphoneuz.pythonanywhere.com/all/

@omonboy

star

Thu Jan 25 2024 09:25:01 GMT+0000 (Coordinated Universal Time)

@Jevin2090

star

Thu Jan 25 2024 07:44:15 GMT+0000 (Coordinated Universal Time)

@odaat_detailer

star

Thu Jan 25 2024 05:26:08 GMT+0000 (Coordinated Universal Time) https://en.wikipedia.org/wiki/Graph_neural_network

@odaat_detailer

star

Thu Jan 25 2024 05:26:02 GMT+0000 (Coordinated Universal Time) https://en.wikipedia.org/wiki/Graph_neural_network

@odaat_detailer

star

Thu Jan 25 2024 05:02:07 GMT+0000 (Coordinated Universal Time) https://www.nadcab.com/exchange-listing

@ExchangeListing

star

Thu Jan 25 2024 04:26:17 GMT+0000 (Coordinated Universal Time)

@aguest #c#

star

Thu Jan 25 2024 04:09:57 GMT+0000 (Coordinated Universal Time)

@aguest #performance #python

star

Thu Jan 25 2024 04:06:09 GMT+0000 (Coordinated Universal Time)

@aguest #performance #python

star

Wed Jan 24 2024 22:51:04 GMT+0000 (Coordinated Universal Time) https://react.dev/reference/react/useContext

@Z3TACS #react.js #javascript

star

Wed Jan 24 2024 21:07:14 GMT+0000 (Coordinated Universal Time)

@darshcode #sql

star

Wed Jan 24 2024 20:20:43 GMT+0000 (Coordinated Universal Time) https://www.justinsilver.com/technology/node-js-pm2-nginx-redis-centos-7/

@djlsme

star

Wed Jan 24 2024 20:20:39 GMT+0000 (Coordinated Universal Time) https://www.justinsilver.com/technology/node-js-pm2-nginx-redis-centos-7/

@djlsme

star

Wed Jan 24 2024 18:29:32 GMT+0000 (Coordinated Universal Time)

@Realencoder

star

Wed Jan 24 2024 17:14:47 GMT+0000 (Coordinated Universal Time)

@taharjt

star

Wed Jan 24 2024 16:54:56 GMT+0000 (Coordinated Universal Time)

@FlexSimGeek #flexscript #dp #conveyor

star

Wed Jan 24 2024 16:25:12 GMT+0000 (Coordinated Universal Time)

@Realencoder

star

Wed Jan 24 2024 15:24:23 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/2600775/how-to-get-week-number-in-python

@webdeveloper_

star

Wed Jan 24 2024 15:16:08 GMT+0000 (Coordinated Universal Time) https://anvil.works/forum/t/getting-users-location-from-mobile-device/810/3

@webdeveloper_

star

Wed Jan 24 2024 13:21:14 GMT+0000 (Coordinated Universal Time)

@infinityuz

star

Wed Jan 24 2024 13:20:38 GMT+0000 (Coordinated Universal Time)

@infinityuz

star

Wed Jan 24 2024 11:35:39 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151 #java

star

Wed Jan 24 2024 10:57:44 GMT+0000 (Coordinated Universal Time)

@taharjt

star

Wed Jan 24 2024 10:10:18 GMT+0000 (Coordinated Universal Time) https://docs.snowplow.io/docs/destinations/forwarding-events/google-tag-manager-server-side/snowplow-client-for-gtm-ss/

@thomaslangnau #bash

star

Wed Jan 24 2024 09:36:04 GMT+0000 (Coordinated Universal Time)

@taharjt

Save snippets that work with our extensions

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