Skip to content

Instantly share code, notes, and snippets.

View han-so1omon's full-sized avatar

han-so1omon

View GitHub Profile
@alikrc
alikrc / Most starred projects on github.txt
Last active September 15, 2022 20:12
Most starred projects on github
https://api.github.com/search/repositories?q=stars:>1000&sort=stars

RESTful Drupal 8 CRUD Example using jQuery and core REST module

CREATE Item

var package = {}
package.title = [{'value':'t1'}]
package.body = [{'value':'b1'}]
package._links = {"type":{"href":"http://local.drupal8.org/rest/type/node/page"}}

$.ajax({
@nkbt
nkbt / .eslintrc.js
Last active May 11, 2024 13:03
Strict ESLint config for React, ES6 (based on Airbnb Code style)
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"ecmaFeatures": {