Snippets Collections
public class Initials {
  
	public static void main(String[] args) {
    
    // Add a first name and a last name:
    String firstName = "Cash";  
    String lastName = "Carti";
    
    // What are the initials?
    System.out.println(firstName.charAt(0));
    System.out.println(lastName.charAt(0));
  }
  
}
public class MorseCode {
  
  public static void main(String[] args) {
    
    String code = ".... .. / .. .----. -- / ... --- -. -. -.-- / .- -. -.. / .. / .-.. .. -.- . / - --- / . .- - / .-. .- -- . -.";

    // Write the code:
    
    System.out.println(code.indexOf(". .- -"));
  }
  
}
n_inputs = int(input())
for i in range(n_inputs):
  num = int(input())
  print(num)
n_inputs = int(input())
for i in range(n_inputs):
  num = int(input())
  print(num)
num = int(input())
sum = 0
for i in range(num + 1):
    sum = sum + i
print(sum)
n = int(input("enter a number: "))
i = 1
sum = 0
while (i <= n):
    sum = sum + i
    i = i + 1
print("The sum is: ", sum)
switch(expression) {
  case x:
    // code block
    break;
  case y:
    // code block
    break;
  default:
    // code block
}
int time = 20;
if (time < 18) {
  System.out.println("Good day.");
} else {
  System.out.println("Good evening.");
}
// Outputs "Good evening."
if (condition) {
  // block of code to be executed if the condition is true
} else {
  // block of code to be executed if the condition is false
}
if (20 > 18) {
  System.out.println("20 is greater than 18");
}
if (condition) {
  // block of code to be executed if the condition is true
}
String testpro1 = "TestPro";


String testpro2 = "TestPro";



system.out.println(testpro1.equals(testpro2));
int a = 7;

and

int b = 7; 

system.out.println(a == b);
class Main {
  public static void main (String[] args) {

    int a = 5;
    int b = 2;

    double result = 5/2.0;

    int c = 4;

    System.out.println (c++);
  }
}
class Main {
  public static void main (String[] args) {

    int a = 5;
    int b = 2;

    double result = 5/2.0;

    int c = 4;

    System.out.println (c++);
  }
}
class Main {
  public static void main (String[] args) {

    int a = 5;
    int b = 2;

    double result = 5/2.0;

    System.out.println (result);
  }
}
class Main {
  public static void main (String[] args) {

    int a = 7;
    int b = 8;

    int result = a%b;

    System.out.println (result);
  }
}
class Main {
  public static void main (String[] args) {

    int a = 7;
    int b = 8;

    int result = a-b;

    System.out.println (result);
  }
}
class Main {
  public static void main (String[] args) {

    int a = 7;
    int b = 8;

    int result = a+b;

    System.out.println (result);
  }
}
String greeting = "My name is"; 

String name = "Azat"; 
System.out.println ("2+2 equals 4");
System.out.println (2+2);
List chunk(List list, int chunkSize) {
  List chunks = [];
  int len = list.length;
  for (var i = 0; i < len; i += chunkSize) {
    int size = i+chunkSize;
    chunks.add(list.sublist(i, size > len ? len : size));
  }
  return chunks;
}

List nums = [1,2,3,4,5];

print(chunk(nums, 2));

// [[1,2], [3,4], [5]]
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>
<!-- Vertically centered modal -->
<div class="modal-dialog modal-dialog-centered">
  ...
</div>

<!-- Vertically centered scrollable modal -->
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
  ...
</div>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
  Launch static backdrop modal
</button>

<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h1 class="modal-title fs-5" id="staticBackdropLabel">Modal title</h1>
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Understood</button>
      </div>
    </div>
  </div>
</div>
public class Password {
  
  public static void main(String[] args) {
    
    String password = "IgotTheKEYS";
    
    // Write the code:
    System.out.println(password.equals("Mango"));
    System.out.println(password.equals("IgotTheKEYS"));
    System.out.println(password.equals("igotthekeys"));
    //compares two strings without considering upper/lower cases.
    System.out.println(password.equalsIgnoreCase("igotthekeys"));
  }
  
}
<!DOCTYPE html>
<html>
<head>
<title>This is my page</title>
</head>
<body>

<h1>Welcome to world of programming</h1>
<p>This is my first paragraph.</p>

</body>
</html>
public class CombineNames {
  
	public static void main(String[] args) {
    
    // Add your first names:
    String firstName = "Cash";  
    String lastName = "Carti";

    // What's the full name?
  System.out.println(firstName.concat(" " + lastName));
  }
  
}
// Use a global for the submit and return data rendering in the examples.
// Don't do this outside of the Editor examples!
var editor;
 
// Display an Editor form that allows the user to pick the CSV data to apply to each column
function selectColumns ( editor, csv, header ) {
    var selectEditor = new $.fn.dataTable.Editor();
    var fields = editor.order();
 
    for ( var i=0 ; i<fields.length ; i++ ) {
        var field = editor.field( fields[i] );
 
        selectEditor.add( {
            label: field.label(),
            name: field.name(),
            type: 'select',
            options: header,
            def: header[i]
        } );
    }
 
    selectEditor.create({
        title: 'Map CSV fields',
        buttons: 'Import '+csv.length+' records',
        message: 'Select the CSV column you want to use the data from for each field.',
        onComplete: 'none'
    });
 
    selectEditor.on('submitComplete', function (e, json, data, action) {
        // Use the host Editor instance to show a multi-row create form allowing the user to submit the data.
        editor.create( csv.length, {
            title: 'Confirm import',
            buttons: 'Submit',
            message: 'Click the <i>Submit</i> button to confirm the import of '+csv.length+' rows of data. Optionally, override the value for a field to set a common value by clicking on the field below.'
        } );
 
        for ( var i=0 ; i<fields.length ; i++ ) {
            var field = editor.field( fields[i] );
            var mapped = data[ field.name() ];
 
            for ( var j=0 ; j<csv.length ; j++ ) {
                field.multiSet( j, csv[j][mapped] );
            }
        }
    } );
}
 
$(document).ready(function() {
    // Regular editor for the table
    editor = new $.fn.dataTable.Editor( {
        ajax: "../php/staff.php",
        table: "#example",
        fields: [ {
                label: "First name:",
                name: "first_name"
            }, {
                label: "Last name:",
                name: "last_name"
            }, {
                label: "Position:",
                name: "position"
            }, {
                label: "Office:",
                name: "office"
            }, {
                label: "Start date:",
                name: "start_date",
                type: "datetime"
            }, {
                label: "Salary:",
                name: "salary"
            }
        ]
    } );
 
    // Upload Editor - triggered from the import button. Used only for uploading a file to the browser
    var uploadEditor = new $.fn.dataTable.Editor( {
        fields: [ {
            label: 'CSV file:',
            name: 'csv',
            type: 'upload',
            ajax: function ( files, done ) {
                // Ajax override of the upload so we can handle the file locally. Here we use Papa
                // to parse the CSV.
                Papa.parse(files[0], {
                    header: true,
                    skipEmptyLines: true,
                    complete: function (results) {
                        if ( results.errors.length ) {
                            console.log( results );
                            uploadEditor.field('csv').error( 'CSV parsing error: '+ results.errors[0].message );
                        }
                        else {
                            selectColumns( editor, results.data, results.meta.fields );
                        }
 
                        // Tell Editor the upload is complete - the array is a list of file
                        // id's, which the value of doesn't matter in this case.
                        done([0]);
                    }
                });
            }
        } ]
    } );
 
    $('#example').DataTable( {
        dom: 'Bfrtip',
        ajax: "../php/staff.php",
        columns: [
            { data: 'first_name' },
            { data: 'last_name' },
            { data: "position" },
            { data: "office" },
            { data: "start_date" },
            { data: "salary", render: $.fn.dataTable.render.number( ',', '.', 0, '$' ) }
        ],
        select: true,
        buttons: [
            { extend: 'create', editor: editor },
            { extend: 'edit',   editor: editor },
            { extend: 'remove', editor: editor },
            {
                extend: 'csv',
                text: 'Export CSV',
                className: 'btn-space',
                exportOptions: {
                    orthogonal: null
                }
            },
            {
                text: 'Import CSV',
                action: function () {
                    uploadEditor.create( {
                        title: 'CSV file import'
                    } );
                }
            },
            {
                extend: 'selectAll',
                className: 'btn-space'
            },
            'selectNone',
        ]
    } );
} );
public class TweetCounter {
  


	public static void main(String[] args) {
    
    String tweet = "Liz Lemon, ninjas are kind of cool... I just dont know any personally. Get on that.";  

    // What's the character count?
    
    System.out.println(tweet.length());


  }
  
}
1// PHP 8.0
2match (string $method) {
3    'GET' => $method = 'GET',
4    'POST' => $method = 'POST',
5    default => throw new Exception(
6        message: "$method is not supported yet.",
7    ),
8};
List<WebElement> listOfElements = driver.findElements(By.xpath("//div"));
Actions a = new Actions(driver);

//Double click on element
WebElement element = driver.findElement(By.xpath(locator));

a.doubleClick(element).perform();
Actions action = new Actions(driver); 
element = driver.findElement(By.cssLocator(locator));
action.moveToElement(element).click();
Actions action = new Actions(driver);
action.moveToElement(element).click().perform();
LET vAutomationURL='$(vBaseAutoURL)$(vAutomationID)/actions/execute?X-Execution-Token=$(vAutomationToken)&application=&'& DocumentName()
   // POST data to server
   $(document).ready( function() {
     $('#example').dataTable( {
       "bProcessing": true,
       "bServerSide": true,
       "sAjaxSource": "xhr.php",
       "fnServerData": function ( sSource, aoData, fnCallback, oSettings ) {
         oSettings.jqXHR = $.ajax( {
           "dataType": 'json', 
           "type": "POST", 
           "url": sSource, 
           "data": aoData, 
           "success": fnCallback
         } );
       }
     } );
   } );
{
    "emptyTable": "No data available in table",
    "info": "Showing _START_ to _END_ of _TOTAL_ entries",
    "infoEmpty": "Showing 0 to 0 of 0 entries",
    "infoFiltered": "(filtered from _MAX_ total entries)",
    "infoThousands": ",",
    "lengthMenu": "Show _MENU_ entries",
    "loadingRecords": "Loading...",
    "processing": "Processing...",
    "search": "Search:",
    "zeroRecords": "No matching records found",
    "thousands": ",",
    "paginate": {
        "first": "First",
        "last": "Last",
        "next": "Next",
        "previous": "Previous"
    },
    "aria": {
        "sortAscending": ": activate to sort column ascending",
        "sortDescending": ": activate to sort column descending"
    },
    "autoFill": {
        "cancel": "Cancel",
        "fill": "Fill all cells with <i>%d<\/i>",
        "fillHorizontal": "Fill cells horizontally",
        "fillVertical": "Fill cells vertically"
    },
    "buttons": {
        "collection": "Collection <span class='ui-button-icon-primary ui-icon ui-icon-triangle-1-s'\/>",
        "colvis": "Column Visibility",
        "colvisRestore": "Restore visibility",
        "copy": "Copy",
        "copyKeys": "Press ctrl or u2318 + C to copy the table data to your system clipboard.<br><br>To cancel, click this message or press escape.",
        "copySuccess": {
            "1": "Copied 1 row to clipboard",
            "_": "Copied %d rows to clipboard"
        },
        "copyTitle": "Copy to Clipboard",
        "csv": "CSV",
        "excel": "Excel",
        "pageLength": {
            "-1": "Show all rows",
            "_": "Show %d rows"
        },
        "pdf": "PDF",
        "print": "Print",
        "updateState": "Update",
        "stateRestore": "State %d",
        "savedStates": "Saved States",
        "renameState": "Rename",
        "removeState": "Remove",
        "removeAllStates": "Remove All States",
        "createState": "Create State"
    },
    "searchBuilder": {
        "add": "Add Condition",
        "button": {
            "0": "Search Builder",
            "_": "Search Builder (%d)"
        },
        "clearAll": "Clear All",
        "condition": "Condition",
        "conditions": {
            "date": {
                "after": "After",
                "before": "Before",
                "between": "Between",
                "empty": "Empty",
                "equals": "Equals",
                "not": "Not",
                "notBetween": "Not Between",
                "notEmpty": "Not Empty"
            },
            "number": {
                "between": "Between",
                "empty": "Empty",
                "equals": "Equals",
                "gt": "Greater Than",
                "gte": "Greater Than Equal To",
                "lt": "Less Than",
                "lte": "Less Than Equal To",
                "not": "Not",
                "notBetween": "Not Between",
                "notEmpty": "Not Empty"
            },
            "string": {
                "contains": "Contains",
                "empty": "Empty",
                "endsWith": "Ends With",
                "equals": "Equals",
                "not": "Not",
                "notEmpty": "Not Empty",
                "startsWith": "Starts With",
                "notContains": "Does Not Contain",
                "notStartsWith": "Does Not Start With",
                "notEndsWith": "Does Not End With"
            },
            "array": {
                "without": "Without",
                "notEmpty": "Not Empty",
                "not": "Not",
                "contains": "Contains",
                "empty": "Empty",
                "equals": "Equals"
            }
        },
        "data": "Data",
        "deleteTitle": "Delete filtering rule",
        "leftTitle": "Outdent Criteria",
        "logicAnd": "And",
        "logicOr": "Or",
        "rightTitle": "Indent Criteria",
        "title": {
            "0": "Search Builder",
            "_": "Search Builder (%d)"
        },
        "value": "Value"
    },
    "searchPanes": {
        "clearMessage": "Clear All",
        "collapse": {
            "0": "SearchPanes",
            "_": "SearchPanes (%d)"
        },
        "count": "{total}",
        "countFiltered": "{shown} ({total})",
        "emptyPanes": "No SearchPanes",
        "loadMessage": "Loading SearchPanes",
        "title": "Filters Active - %d",
        "showMessage": "Show All",
        "collapseMessage": "Collapse All"
    },
    "select": {
        "cells": {
            "1": "1 cell selected",
            "_": "%d cells selected"
        },
        "columns": {
            "1": "1 column selected",
            "_": "%d columns selected"
        }
    },
    "datetime": {
        "previous": "Previous",
        "next": "Next",
        "hours": "Hour",
        "minutes": "Minute",
        "seconds": "Second",
        "unknown": "-",
        "amPm": [
            "am",
            "pm"
        ],
        "weekdays": [
            "Sun",
            "Mon",
            "Tue",
            "Wed",
            "Thu",
            "Fri",
            "Sat"
        ],
        "months": [
            "January",
            "February",
            "March",
            "April",
            "May",
            "June",
            "July",
            "August",
            "September",
            "October",
            "November",
            "December"
        ]
    },
    "editor": {
        "close": "Close",
        "create": {
            "button": "New",
            "title": "Create new entry",
            "submit": "Create"
        },
        "edit": {
            "button": "Edit",
            "title": "Edit Entry",
            "submit": "Update"
        },
        "remove": {
            "button": "Delete",
            "title": "Delete",
            "submit": "Delete",
            "confirm": {
                "_": "Are you sure you wish to delete %d rows?",
                "1": "Are you sure you wish to delete 1 row?"
            }
        },
        "error": {
            "system": "A system error has occurred (<a target=\"\\\" rel=\"nofollow\" href=\"\\\">More information<\/a>)."
        },
        "multi": {
            "title": "Multiple Values",
            "info": "The selected items contain different values for this input. To edit and set all items for this input to the same value, click or tap here, otherwise they will retain their individual values.",
            "restore": "Undo Changes",
            "noMulti": "This input can be edited individually, but not part of a group. "
        }
    },
    "stateRestore": {
        "renameTitle": "Rename State",
        "renameLabel": "New Name for %s:",
        "renameButton": "Rename",
        "removeTitle": "Remove State",
        "removeSubmit": "Remove",
        "removeJoiner": " and ",
        "removeError": "Failed to remove state.",
        "removeConfirm": "Are you sure you want to remove %s?",
        "emptyStates": "No saved states",
        "emptyError": "Name cannot be empty.",
        "duplicateError": "A state with this name already exists.",
        "creationModal": {
            "toggleLabel": "Includes:",
            "title": "Create New State",
            "select": "Select",
            "searchBuilder": "SearchBuilder",
            "search": "Search",
            "scroller": "Scroll Position",
            "paging": "Paging",
            "order": "Sorting",
            "name": "Name:",
            "columns": {
                "visible": "Column Visibility",
                "search": "Column Search"
            },
            "button": "Create"
        }
    }
}  
import * as React from 'react';
const list = [
  {
    title: 'React',
    url: 'https://reactjs.org/',
    author: 'Jordan Walke',
    num_comments: 3,
    points: 4,
    objectID: 0,
}, {
    title: 'Redux',
    url: 'https://redux.js.org/',
    author: 'Dan Abramov, Andrew Clark',
    num_comments: 2,
    points: 5,
    objectID: 1,
}, ];
function App() { ... }
export default App;
{"gcm_sender_id":"15057814354","gcm_user_visible_only":true,"related_applications":[{"platform":"play","id":"com.facebook.katana"},{"platform":"play","id":"com.facebook.lite"},{"platform":"play","id":"com.facebook.orca"},{"platform":"play","id":"com.facebook.mlite"}],"prefer_related_applications":false}
//create a button (layout component) in the object class

//example you want to create a slug based on a field name 'title' (text input)
//to save in the field 'url' (text input)
//click on the button will automatically create the slug

//copy and paste the following code in the button handler
((btn)=>{

//get button id
const id = btn.id
//get button element
const button = document.getElementById(id);
//define the current DataObject as workspace in order to find the elements  
const workspace = '_data_object_name'; //ex. News
  
//find the root element of the record
const root = button.closest('div.pimcore_class_' + workspace);

//find the source input field by name with the value to slugify (in this example 'title')
const source = root.querySelector('input[name="title"]');
//find the targe input field by name with the slugified value (in this example 'url')  
const target = root.querySelector('input[name="url"]');

//set the target value with the slugified value
target.value = slugify(source.value);

function slugify(str)
{
    str = str.replace(/^\s+|\s+$/g, '');

    // Make the string lowercase
    str = str.toLowerCase();

    // Remove accents, swap ñ for n, etc
    var from = "ÁÄÂÀÃÅČÇĆĎÉĚËÈÊẼĔȆÍÌÎÏŇÑÓÖÒÔÕØŘŔŠŤÚŮÜÙÛÝŸŽáäâàãåčçćďéěëèêẽĕȇíìîïňñóöòôõøðřŕšťúůüùûýÿžþÞĐđßÆa·/_,:;";
    var to   = "AAAAAACCCDEEEEEEEEIIIINNOOOOOORRSTUUUUUYYZaaaaaacccdeeeeeeeeiiiinnooooooorrstuuuuuyyzbBDdBAa------";
    for (var i=0, l=from.length ; i<l ; i++) {
        str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
    }

    // Remove invalid chars
    str = str.replace(/[^a-z0-9 -]/g, '') 
    // Collapse whitespace and replace by -
    .replace(/\s+/g, '-') 
    // Collapse dashes
    .replace(/-+/g, '-'); 

    return str;
}
});
star

Sun Nov 06 2022 03:38:28 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sun Nov 06 2022 03:34:12 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sun Nov 06 2022 03:18:35 GMT+0000 (Coordinated Universal Time)

@codewithakash

star

Sun Nov 06 2022 03:17:12 GMT+0000 (Coordinated Universal Time)

@codewithakash

star

Sun Nov 06 2022 00:45:27 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:42:43 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:41:11 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:39:09 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:37:01 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:29:19 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:28:13 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:25:13 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:24:19 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:23:30 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:21:46 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:21:06 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:19:56 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:17:56 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:17:18 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:16:38 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:15:28 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:14:36 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:13:31 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:12:45 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:11:57 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:07:25 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sun Nov 06 2022 00:05:12 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sat Nov 05 2022 22:44:41 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/22274033/how-do-i-split-or-chunk-a-list-into-equal-parts-with-dart

@yashmakan #dart

star

Sat Nov 05 2022 22:20:50 GMT+0000 (Coordinated Universal Time) https://getbootstrap.com/docs/5.2/components/carousel/

@DevDario

star

Sat Nov 05 2022 22:17:19 GMT+0000 (Coordinated Universal Time) https://getbootstrap.com/docs/5.2/components/modal/

@DevDario

star

Sat Nov 05 2022 22:17:02 GMT+0000 (Coordinated Universal Time) https://getbootstrap.com/docs/5.2/components/modal/

@DevDario

star

Sat Nov 05 2022 21:07:29 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sat Nov 05 2022 20:54:32 GMT+0000 (Coordinated Universal Time)

@Yoonus

star

Sat Nov 05 2022 20:39:24 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sat Nov 05 2022 20:38:45 GMT+0000 (Coordinated Universal Time) https://editor.datatables.net/examples/extensions/import.html

@ziksonfly

star

Sat Nov 05 2022 20:29:49 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sat Nov 05 2022 20:19:26 GMT+0000 (Coordinated Universal Time) https://laravel-news.com/modern-php-features-explained

@jrafaelg

star

Sat Nov 05 2022 20:06:29 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sat Nov 05 2022 20:02:16 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sat Nov 05 2022 20:01:25 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sat Nov 05 2022 19:58:44 GMT+0000 (Coordinated Universal Time)

@testpro #java

star

Sat Nov 05 2022 17:35:35 GMT+0000 (Coordinated Universal Time)

@jmbenedetto #qlik

star

Sat Nov 05 2022 17:18:06 GMT+0000 (Coordinated Universal Time) http://legacy.datatables.net/usage/callbacks#fnServerData

@ziksonfly

star

Sat Nov 05 2022 14:51:29 GMT+0000 (Coordinated Universal Time) https://datatables.net/plug-ins/i18n/English.html

@ziksonfly

star

Sat Nov 05 2022 12:24:51 GMT+0000 (Coordinated Universal Time)

@jayakrishna

star

Sat Nov 05 2022 10:29:01 GMT+0000 (Coordinated Universal Time) https://m.facebook.com/data/manifest/

@Tawutchai

star

Sat Nov 05 2022 09:57:38 GMT+0000 (Coordinated Universal Time) https://developer.chrome.com/docs/devtools/open/

@Tawutchai #shell

star

Sat Nov 05 2022 09:39:40 GMT+0000 (Coordinated Universal Time)

@swina #javascript #pimcore

Save snippets that work with our extensions

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