Skip to content

Instantly share code, notes, and snippets.

@organizm
organizm / remove.attribute.js
Last active April 5, 2019 09:55
[Remove nested attribute in DynanmoDB]#DynanmoDB
let docClient = new AWS.DynamoDB.DocumentClient();
let params = {
TableName : "customer",
Key : {
"customerId": "customer_001"
},
UpdateExpression : "REMOVE address.street3",
ReturnValues : "UPDATED_NEW"
};
@organizm
organizm / 0_reuse_code.js
Created February 16, 2017 08:58
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@organizm
organizm / angular.js
Created September 14, 2016 08:58
Angular if apply #angular
if(!$scope.$$phase) {
// $digest or $apply;
$scope.$apply();
}
@organizm
organizm / add_meta.php
Last active August 17, 2016 21:02
Add new field to woocommerce product metabox (this example for pricing tab simple product) #wordpress #woocommerce
<?php
add_action('woocommerce_product_options_pricing', 'atlantean_coming_soon');
function atlantean_coming_soon() {
woocommerce_wp_checkbox( array(
'id' => '_coming_soon',
'wrapper_class' => 'show_if_simple show_if_variable',
'label' => __( 'Coming soon', 'woocommerce' ),
'description' => __( 'Enable coming soon label', 'woocommerce' )
@organizm
organizm / start_chrome_desctop.sh
Last active January 9, 2022 11:33
How to install end start chrome remote desctop #ubuntu
Mostly from https://aur.archlinux.org/packages/chrome-remote-desktop/?comments=all but with some of my changes.
1. I manually created the chrome-remote-desktop group, and added myself to it.
2. I manually created the ~/.chrome-remote-desktop-session file with "exec startxfce4" in it.
3. I manually created the ~/.config/chrome-remote-desktop directory.
4. mkdir /etc/chromium-browser/native-messaging-hosts
4. ln -s /etc/opt/chrome/native-messaging-hosts/* /etc/chromium-browser/native-messaging-hosts/
You should now have a 'Enable Remote Connection' button on the CRD extension page.
@organizm
organizm / find_rm.sh
Last active July 5, 2016 10:20
Удалить из папки ооочень большое колическтво файлов, когда ln ls не может даже отобразить. #linux
postdrop: warning: mail_queue_enter: create file maildrop/327454.25698: No space left on device
find dir_name/ -type f -name "*" -exec rm -f {} \; - #wery slow for many files
find session/ -type f -delete; #will perform better because it doesn't have to spawn an external process for each and every matched file.
@organizm
organizm / gulp_install.sh
Last active July 19, 2016 09:29
Gulp instruction #gulp #node
# Install latest node
# for Node.js v4
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
# OR for Node.js v5
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
# OR for Node.js v6
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install nodejs
# it will install npm to
@organizm
organizm / wc-sort-by-default.php
Created June 27, 2016 14:40
WooCommerce - Change default catalog sort order #woocommerce #wordpress
<?php
/**
* This code should be added to functions.php of your theme
**/
add_filter('woocommerce_default_catalog_orderby', 'imperialfashion_custom_default_catalog_orderby');
function imperialfashion_custom_default_catalog_orderby() {
return 'date'; // Can also use title and price
}
@organizm
organizm / msttcorefonts
Created June 1, 2016 07:49
Установка msttcorefonts (шрифтов Microsoft) на Ubuntu #linux
sudo apt install msttcorefonts
sudo fc-cache -fv
@organizm
organizm / pupkey
Created May 30, 2016 09:40
NO_PUBKEY Error. Set pupkey #linux
gpg --keyserver pgpkeys.mit.edu --recv-key 010908312D230C5F
gpg -a --export 010908312D230C5F | sudo apt-key add -