Skip to content

Instantly share code, notes, and snippets.

@oclif/config reading core plugin /Users/tchilders/.local/share/sfdx/client/7.159.0-f8fac41 +0ms
@oclif/config loadJSON /Users/tchilders/.local/share/sfdx/client/7.159.0-f8fac41/package.json +0ms
@oclif/config loadJSON /Users/tchilders/.local/share/sfdx/client/7.159.0-f8fac41/oclif.manifest.json +2ms
@oclif/config:sfdx-cli using manifest from /Users/tchilders/.local/share/sfdx/client/7.159.0-f8fac41/oclif.manifest.json +0ms
@oclif/config reading user plugins pjson /Users/tchilders/.local/share/sfdx/package.json +0ms
@oclif/config loadJSON /Users/tchilders/.local/share/sfdx/package.json +1ms
@oclif/config loading plugins [
'@oclif/plugin-autocomplete',
'@oclif/plugin-commands',
'@oclif/plugin-help',
+ sfdx update rc-stable --dev-debug
Executing: /root/.local/share/sfdx/client/bin/sfdx update rc-stable --dev-debug
Executing: SFDX_BINPATH=/root/.local/share/sfdx/client/bin/sfdx /root/.local/share/sfdx/client/bin/node /root/.local/share/sfdx/client/bin/sfdx.js update rc-stable --dev-debug
2021-11-12T21:56:31.620Z @oclif/config reading core plugin /root/.local/share/sfdx/client
2021-11-12T21:56:31.621Z @oclif/config loadJSON /root/.local/share/sfdx/client/package.json
2021-11-12T21:56:31.622Z @oclif/config loadJSON /root/.local/share/sfdx/client/oclif.manifest.json
2021-11-12T21:56:31.623Z @oclif/config:sfdx-cli using manifest from /root/.local/share/sfdx/client/oclif.manifest.json
2021-11-12T21:56:31.623Z @oclif/config reading user plugins pjson /root/.local/share/sfdx/package.json
2021-11-12T21:56:31.623Z @oclif/config loadJSON /root/.local/share/sfdx/package.json
2021-11-12T21:56:31.624Z @oclif/config loading plugins [ '@oclif/plugin-autocomplete',
===========
VULKAN INFO
===========
Vulkan Instance Version: 1.1.70
ERROR: [Loader Message] Code 0 : /usr/lib/i386-linux-gnu/libvulkan_radeon.so: wrong ELF class: ELFCLASS32
ERROR: [Loader Message] Code 0 : /usr/lib/i386-linux-gnu/libvulkan_intel.so: wrong ELF class: ELFCLASS32
```
LaunchApp changed task to ShowLaunchOption with ""
GameAction [AppID 275850, ActionID 2] : LaunchApp waiting for user response to ShowLaunchOption ""
GameAction [AppID 275850, ActionID 2] : LaunchApp continues with user response "0"
GameAction [AppID 275850, ActionID 2] : LaunchApp changed task to ProcessingInstallScript with ""
esync: up and running.
GameAction [AppID 275850, ActionID 2] : LaunchApp changed task to SynchronizingCloud with ""
GameAction [AppID 275850, ActionID 2] : LaunchApp changed task to SiteLicenseSeatCheckout with ""
GameAction [AppID 275850, ActionID 2] : LaunchApp changed task to CreatingProcess with ""
GameAction [AppID 275850, ActionID 2] : LaunchApp waiting for user response to CreatingProcess ""
@trentchilders
trentchilders / sc.20.md
Created May 12, 2015 21:02
screencast #20
class Person

attr_reader :age, :occupation, :mood

  def initialize
    @age = 0
    @occupation = ""
    @mood = ""
 end
@trentchilders
trentchilders / sc.19.md
Created May 12, 2015 20:21
screencast # 19
class Person

  def initialize
    @age = 0
    @occupation = ""
    @mood = ""
  end

 def age(number)
@trentchilders
trentchilders / sc.18.md
Created May 12, 2015 17:28
screencast # 18

screencast 18

class Person

  def start
    @age = 0
    @occupation = ""
    @mood = ""
  end
@trentchilders
trentchilders / sc.17.md
Created May 12, 2015 02:21
Screencast # 17

Screencast 17

class Calculator
  def double(number)
    number*2
  end

  def add(number1, number2)
    number1 + number2
 end
class Skunk

  def warn
    skunk = "You'd best not scare me."
    return skunk
  end

  def warn_2
 return warn.upcase!
@trentchilders
trentchilders / screencast15.md
Last active August 29, 2015 14:21
screencast #15
class Dog
  def speak
    puts "Arf"
  end
    
  def eat
    puts "scarf"
  end
end